diff --git a/thesis-paper/recompile.sh b/thesis-paper/recompile.sh new file mode 100755 index 0000000..3c3f6b4 --- /dev/null +++ b/thesis-paper/recompile.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +file="thesis-paper" + +rm *.aux *.fls *.fdb_latexmk *.log *.acn *.acr *.glg *.gls *.glo *.ist *.run.xml *.bcf *.out *.lot *.lof *.ilg *.blg *.bbl *.toc +latexmk -pdf "$file.tex" +makeglossaries "$file.glo" +makeindex -s "$file.ist" -o "$file.acr" "$file.acn" +rm *.pdf +latexmk -pdf "$file.tex" + diff --git a/thesis-paper/thesis-paper.pdf b/thesis-paper/thesis-paper.pdf index ce5b069..4c0ae10 100644 Binary files a/thesis-paper/thesis-paper.pdf and b/thesis-paper/thesis-paper.pdf differ