Skip to content

Instantly share code, notes, and snippets.

@mktakuya
Created January 9, 2015 06:54
Show Gist options
  • Save mktakuya/0bdb83c1a996f5787143 to your computer and use it in GitHub Desktop.
Save mktakuya/0bdb83c1a996f5787143 to your computer and use it in GitHub Desktop.
レポート自動コンパイルマシン
guard :shell do
watch(/(.*).tex/) do |m|
`echo #{m[1]}`
`platex -interaction=nonstopmode #{m[1]}`
`dvipdfmx #{m[1]}`
`open -g -a Skim #{m[1]}.pdf`
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment