Added example

This commit is contained in:
Lukas Pietzschmann
2022-12-08 18:09:32 +01:00
parent 4f9fe1f062
commit 81dc1e1f9a
4 changed files with 193 additions and 0 deletions

27
example/Makefile Normal file
View File

@@ -0,0 +1,27 @@
PAPER = main.tex
OUT_FOLDER = ./aux
ARGS = -pdflua -silent -rc-report- -view=pdf -outdir=$(OUT_FOLDER)
PRIORITY_ARGS =
all:
latexmk $(ARGS) $(PRIORITY_ARGS) $(PAPER)
verbose:
latexmk $(ARGS) -verbose $(PRIORITY_ARGS) $(PAPER)
draft:
latexmk $(ARGS) -d $(PRIORITY_ARGS) $(PAPER)
clean:
latexmk -C ; rm -rf $(OUT_FOLDER)
show:
latexmk $(ARGS) -pv $(PRIORITY_ARGS) $(PAPER)
watch:
latexmk $(ARGS) -pvc $(PRIORITY_ARGS) $(PAPER)
force:
latexmk $(ARGS) -g $(PRIORITY_ARGS) $(PAPER)
.PHONY: all clean display