123456789101112131415161718192021 |
- #!/bin/sh
- SOURCE=x
- pdflatex $SOURCE
- bibtex $SOURCE
- pdflatex $SOURCE
- pdflatex $SOURCE
- makeindex -t $SOURCE.glg -s $SOURCE.ist -o $SOURCE.gls $SOURCE.glo
- makeindex -t $SOURCE.alg -s $SOURCE.ist -o $SOURCE.acr $SOURCE.acn
- makeindex -t $SOURCE.ilg -o $SOURCE.ind $SOURCE.idx
- pdflatex $SOURCE
- pdflatex $SOURCE
- echo
- echo
- echo Thesis document compiled.
|