diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3b862a5 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +all: + pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate table of contents (ToC) + pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate ToC page indices taking account the new ToC file + pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate PDF with new ToC + rm -f kapitel/*.aux *.aux *.lof *.log *.lot *.toc *.tps *.out *.fdb_latexmk *.fls # Remove cache files + diff --git a/compile.sh b/compile.sh deleted file mode 100755 index b466acf..0000000 --- a/compile.sh +++ /dev/null @@ -1,8 +0,0 @@ -#/bin/bash -pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate table of contents (ToC) -bibtex main.aux # Build bibliography -pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate ToC page indices taking account the new ToC file -pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate PDF with new ToC - -# Delete all cache files as they spam the working directory -./flushcache.sh diff --git a/flushcache.sh b/flushcache.sh deleted file mode 100755 index 9b66ff9..0000000 --- a/flushcache.sh +++ /dev/null @@ -1,2 +0,0 @@ -#/bin/bash -rm -f */*.aux *.aux *.lof *.log *.lot *.toc *.tps *.out *.fdb_latexmk *.fls *.bbl *.blg diff --git a/main.pdf b/main.pdf index 96c45b4..222029d 100644 Binary files a/main.pdf and b/main.pdf differ