A Windows batch file for simple LaTeX PDF compiling with clean up
rem this batch file compiles all tex files to pdf files in the folder this file is in | |
for %%i in (*.tex) do (if not exist "%%~ni.pdf" xelatex "%%i") | |
rem this will delete any extraneous files from the compilation process | |
del *.log && del *.aux | |
rem this will delete original tex files and leave only pdf files - delete rem below if you want to enable | |
rem del *.tex |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Linux version in
.bash_aliases
: