initial commit
This commit is contained in:
commit
f1b9082f4e
15 changed files with 498 additions and 0 deletions
15
template/Makefile
Normal file
15
template/Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue