Unpack thesis sources.

This commit is contained in:
2024-07-01 03:43:45 +02:00
parent 9ca84861b3
commit 38c93a2cb1
38 changed files with 6362 additions and 0 deletions

27
thesis/Makefile Normal file
View File

@@ -0,0 +1,27 @@
#
# Thanks to Kevin Urban for providing this makefile.
# Jul 2012
#
# choose which latex compiler you want to use (xelatex or pdflatex)
TEX = pdflatex
################
# stop editing #
################
latexfile = Thesis
# rerun pdf generation until it doesn't say rerun anymore
$(latexfile).pdf: $(latexfile).bbl
while ($(TEX) $(latexfile); grep -q "Rerun to get cross" $(latexfile).log); do true; done
$(latexfile).bbl: $(latexfile).aux
bibtex $(latexfile)
$(latexfile).aux: $(latexfile).tex
$(TEX) $(latexfile)
clean:
rm *.aux
rm *.bbl