This commit is contained in:
alex 2022-03-22 15:12:50 +00:00
parent c22eab7406
commit 876e8be54e
6 changed files with 72 additions and 0 deletions

15
paper/make.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/bash
if [ -d "$HOME/.cabal/bin" ] ; then
PATH="$HOME/.cabal/bin:$PATH"
fi
# --template=templates/template.latex \
pandoc -s paper.md \
--from markdown+auto_identifiers -V colorlinks --number-sections --citeproc --pdf-engine=xelatex \
--dpi=300 --bibliography strudel.bib -o paper.pdf
pandoc -s paper.md --filter filter.py --citeproc --bibliography strudel.bib \
-t markdown-citations -t markdown-fenced_divs \
-o paper-preprocessed.md