blob: e0680027c810c005512a499db7ea347d15082a6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# Dependencies:
#
# - pandoc
# - LaTeX with:
# - XeLaTeX
# - pgfpages, fvextra, and csquotes
# - Recent (Git) Metropolis theme
# - Recent (Git) Owl color theme
# - See https://pandoc.org/MANUAL.html#creating-a-pdf for additional
# dependencies
pandoc slides.md -t beamer -so slides.tex \
--highlight-style breezedark \
--pdf-engine xelatex \
--pdf-engine-opt=-aux-directory=./build \
--pdf-engine-opt=-shell-escape \
"$@"
latexmk -shell-escape -xelatex -8bit -output-directory=./build slides
|