Skip to content

Instantly share code, notes, and snippets.

@enerick
Created June 7, 2012 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enerick/2891813 to your computer and use it in GitHub Desktop.
Save enerick/2891813 to your computer and use it in GitHub Desktop.
単発tex用スクリプト
#!/bin/sh
#Mac以外は知らない
#拡張子を除いた名前を引数として渡す(ex. hoge.tex -> hoge)
platex $1.tex
if [ $? -eq 0 ];then
dvipdfmx $@
else
exit 0
fi
open $1.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment