Blame view

LatexMakefile 284 Bytes
Jinghao Shi authored
1
# use this if you have latexmk installed.
Jinghao Shi authored
2
3
# do not hide temp files to make mint happy
OUTDIR=.
Jinghao Shi authored
4
5
6
7
8
9
10
11
MODE=nonstopmode
MAIN=paper.tex

all:
	latexmk -shell-escape -xelatex -bibtex -pvc -interaction=$(MODE) -outdir=$(OUTDIR) -auxdir=$(OUTDIR) -f $(MAIN)

clean:
	latexmk -outdir=$(OUTDIR) -C