blob: 1bc408890c6dd5eeefb78c7bd7896ae3d2c15385 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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.pdf --highlight-style breezedark --pdf-engine xelatex "$@"
|