Updated some old things and began a new version

This commit is contained in:
Connor Johnstone
2023-12-03 21:51:27 -07:00
parent 5d5baeed34
commit 7ec6b46e81
7 changed files with 287 additions and 13 deletions

15
makefile.old Normal file
View File

@@ -0,0 +1,15 @@
TEX = pandoc
src = template.tex details.yml
src_contract = template_contract.tex details.yml
FLAGS = --pdf-engine=xelatex
output.pdf : $(src)
$(TEX) $(filter-out $<,$^ ) -o $@ --template=$< $(FLAGS)
.PHONY: contract
contract : $(src_contract)
$(TEX) $(filter-out $<,$^ ) -o output_contract.pdf --template=$< $(FLAGS)
.PHONY: clean
clean :
rm output.pdf output_contract.pdf