From 60189ef2705ea441cadff4afd63fe396edb6550a Mon Sep 17 00:00:00 2001 From: nunzip Date: Wed, 5 Dec 2018 18:52:27 +0000 Subject: Set up report structure --- report2/makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 report2/makefile (limited to 'report2/makefile') diff --git a/report2/makefile b/report2/makefile new file mode 100755 index 0000000..4af6952 --- /dev/null +++ b/report2/makefile @@ -0,0 +1,28 @@ +FILES = paper.md \ + metadata.yaml + +OUTPUT = build + +FLAGS = --bibliography=bibliography.bib \ + --csl=bibliography.csl \ + -s \ + -f markdown + +FLAGS_PDF = --template=template.latex + +all: pdf code + +code: + echo '\small\pagenumbering{gobble}' > build/code.aux + echo '~~~~ {.python .numberLinese}' >> build/code.aux + cat ../train.py >> build/code.aux + echo -n '~~~~' >> build/code.aux + pandoc -V geometry:margin=5em \ + -o build/code.pdf build/code.aux + pdfjoin build/paper.pdf build/code.pdf -o build/cw1_vz215_np1915.pdf +pdf: + pandoc -o $(OUTPUT)/paper.pdf $(FLAGS) $(FLAGS_PDF) $(FILES) + +clean: + rm build/* + -- cgit v1.2.3-54-g00ecf