initial commit

This commit is contained in:
Tim Schubert 2022-11-01 13:50:29 +01:00
commit f1b9082f4e
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
15 changed files with 498 additions and 0 deletions

15
template/Makefile Normal file
View file

@ -0,0 +1,15 @@
.PHONY: thesis.pdf all watch clean
all: thesis.pdf
clean:
latexmk -C thesis.tex
thesis.pdf: thesis.tex
latexmk -interaction=batchmode -pdf thesis.tex
watch:
while true; do \
inotifywait -qr -e modify -e create -e delete -e move *tex; \
$(MAKE); \
done