-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.stu
29 lines (25 loc) · 1020 Bytes
/
main.stu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Stu file for generating the slides from LaTeX.
#
@all: slides.pdf slides_wide.pdf;
slides.pdf: slides.tex refs.bib WeSTpresentation.cls
{
rm -rf *.aux *.lo? *.out *.bbl *.brf *.blg *.nl? *.ilg *.toc *.bcf *.nav *.run.xml *.snm
pdflatex -shell-escape -file-line-error -halt-on-error slides.tex
biber slides
pdflatex -shell-escape -file-line-error -halt-on-error slides.tex
pdflatex -shell-escape -file-line-error -halt-on-error slides.tex
}
slides_wide.pdf: slides_wide.tex refs.bib WeSTpresentation.cls
{
rm -rf *.aux *.lo? *.out *.bbl *.brf *.blg *.nl? *.ilg *.toc *.bcf *.nav *.run.xml *.snm
pdflatex -shell-escape -file-line-error -halt-on-error slides_wide.tex
biber slides_wide
pdflatex -shell-escape -file-line-error -halt-on-error slides_wide.tex
pdflatex -shell-escape -file-line-error -halt-on-error slides_wide.tex
}
@clear:
{
rm -rf *.aux *.lo? *.out *.bbl *.brf *.blg *.nl? *.ilg *.toc *.bcf *.nav *.run.xml *.snm
rm -rf slides.pdf slides_wide.pdf
}