12345678910111213141516171819202122232425262728293031323334353637 |
- #!/bin/sh
- MDFILE=$1
- PDFFILE=$(basename $MDFILE .md).pdf
- FILE=$(mktemp XXXXXXXXXX-${MDFILE})
- cat <<EOF >> $FILE
- ---
- documentclass: scrartcl
- classoption:
- - DIV=14
- papersize: a5
- fontsize: 10pt
- mainfont: LucidaBrightOT
- mainFontOptions:
- - Numbers=OldStyle
- sansfont: LucidaSansOT
- mathFont: LucidaBrightMathOT
- monofont: IBMPlexMono
- monofontoptions:
- - Scale=MatchLowercase
- - StylisticSet=3
- csquotes: true
- highlight-style: monochrome
- citemethod: biblatex
- hyperrefoptions:
- - breaklinks=true
- - bookmarks=true
- ...
- EOF
- cat $MDFILE >> $FILE
- pandoc -f markdown -t pdf --highlight-style monochrome --pdf-engine='lualatex' -o $PDFFILE $FILE
- rm $FILE
|