Last active
August 29, 2015 14:12
-
-
Save tarrsalah/216c43bf6c173401c263 to your computer and use it in GitHub Desktop.
Simple script to build my latex files
This file contains hidden or 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
| all: clean compile pdf | |
| compile: | |
| latexmk main.tex | |
| makeglossaries main | |
| latexmk -bibtex -view=pdf -pdf -pdflatex="pdflatex --shell-escape %O %S" main.tex | |
| clean: | |
| latexmk -C | |
| pdf: | |
| evince main.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment