Skip to content

Instantly share code, notes, and snippets.

@Robadob
Created January 17, 2017 23:55
Show Gist options
  • Save Robadob/441e348c9263d64d055dfecd4991d27a to your computer and use it in GitHub Desktop.
Save Robadob/441e348c9263d64d055dfecd4991d27a to your computer and use it in GitHub Desktop.
rd build /s /q
@echo off
SET TEX_MAIN=paper
:start
mkdir build
copy tex\%TEX_MAIN%.tex build
cd build
pdflatex %TEX_MAIN%.tex
bibtex %TEX_MAIN%
makeglossaries %TEX_MAIN%.tex
pdflatex %TEX_MAIN%.tex
pdflatex %TEX_MAIN%.tex
copy paper.pdf ..
cd ..
pause
goto start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment