summaryrefslogtreecommitdiffstats
path: root/build.sh
blob: 94120a11f45a3380d29f1e5c1b2b61fe20b0b760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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 \
	-interaction=nonstopmode \
	-verbose \
	-file-line-error \
	-output-directory=./build slides