diff --git a/Thesis/defaults.yaml b/Thesis/defaults.yaml new file mode 100644 index 0000000..b95229f --- /dev/null +++ b/Thesis/defaults.yaml @@ -0,0 +1,29 @@ +from: markdown +to: pdf +template: wbh.tex + +input-files: +- README.md + +standalone: true + +metadata-files: +- metadata.yaml + +resource-path: + - "." + - "../" +# turn on built-in citation processing. Note that if you need +# control over when the citeproc processing is done relative +# to other filters, you should instead use `citeproc` in the +# list of `filters` (see below). +citeproc: true +cite-method: biblatex +csl: ieee.csl +bibliography: +- thesis.bib +#citation-abbreviations: abbrevs.json + +table-of-contents: true +toc-depth: 3 + diff --git a/make.sh b/make.sh new file mode 100755 index 0000000..1bba1ed --- /dev/null +++ b/make.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +cd Thesis +pandoc -s --template=wbh.tex --citeproc --csl=../$1 --bibliography=../thesis.bib --metadata-file=metadata.yaml --metadata-file=acronyms.yaml README.md -o ../DRAFT-900266-Sebastian_Preisner.tex +pandoc -s --template=wbh.tex --citeproc --csl=../$1 --bibliography=../thesis.bib --metadata-file=metadata.yaml --metadata-file=acronyms.yaml README.md -o ../DRAFT-900266-Sebastian_Preisner.pdf