blob: 9f1ba61aa43aeffa00aa8d3ce8584909e7cbd219 (
plain)
1
2
3
4
5
6
|
#!/usr/bin/env zsh
gup -u ${2%.pdf}.md
pandoc -t latex -o $2 -V "geometry=margin=2cm" -V "fontfamily=libertine" --listings --latex-engine=lualatex ${2%.pdf}.md >&2
[[ -e $2 ]] && touch $2
|