Introduce recompile.sh script

master
Peter Babič 8 years ago
parent acbafd0803
commit 48083ad1fd
Signed by: peter.babic
GPG Key ID: 4BB075BC1884BA40
  1. 11
      thesis-paper/recompile.sh
  2. BIN
      thesis-paper/thesis-paper.pdf

@ -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"

Binary file not shown.
Loading…
Cancel
Save