adding stuff for automation
parent
26f40414e7
commit
56ad21334b
@ -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
|
||||||
|
|
@ -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
|
Loading…
Reference in New Issue