Paper template in LaTeX from my Bachelors Thesis

This commit is contained in:
2026-01-28 19:59:34 +01:00
parent 95848f373e
commit e19902c340
21 changed files with 249 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
PDF = out
TEX = main.tex
OUTDIR = $(realpath out)
all:
latexmk -pdf -outdir=$(OUTDIR) $(TEX)
mv $(OUTDIR)/$(basename $(TEX)).pdf $(PDF).pdf
watch:
make all
zathura *.pdf &
while inotifywait -e close_write $(TEX); do make all; done
clean:
latexmk -c -outdir=$(OUTDIR)
rm -f $(OUTDIR)/*