New style for pandoc

This commit is contained in:
Connor Johnstone
2020-01-03 14:40:19 -07:00
parent 3ea2428ecd
commit b7a58e1da7
3 changed files with 234 additions and 0 deletions

10
makefile Normal file
View File

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