Created
January 19, 2014 13:43
-
-
Save clngn/8505180 to your computer and use it in GitHub Desktop.
platex2pdf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export PATH=/usr/texbin:$PATH | |
export name=$1 | |
if platex $1 ; then | |
platex $1 | |
dvipdfmx ${name%.*} | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment