From 6adf7035aff908622ff4622de5669b3ad6461c1e Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Thu, 18 Oct 2018 10:39:54 +0100 Subject: Add IEEE style pandoc report --- report/makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 report/makefile (limited to 'report/makefile') diff --git a/report/makefile b/report/makefile new file mode 100644 index 0000000..6359a42 --- /dev/null +++ b/report/makefile @@ -0,0 +1,20 @@ +FILES = paper.md \ + metadata.yaml + +OUTPUT = build + +FLAGS = --bibliography=bibliography.bib \ + --csl=bibliography.csl \ + -s \ + -f markdown + +FLAGS_PDF = --template=template.latex + +all: pdf + +pdf: + pandoc -o $(OUTPUT)/paper.pdf $(FLAGS) $(FLAGS_PDF) $(FILES) + +clean: + rm build/* + -- cgit v1.2.3-54-g00ecf