dissertation-4-dissertation/compile-thesis.sh

10 lines
276 B
Bash
Raw Normal View History

2013-11-15 23:38:17 +00:00
#!/bin/bash
# A script to compile the PhD Thesis - Krishna Kumar
# Distributed under GPLv2.0 License
echo "Compiling your PhD Thesis...please wait...!"
pdflatex -interaction=nonstopmode thesis.tex
bibtex thesis.aux
pdflatex -interaction=nonstopmode thesis.tex
echo "Done!"