blob: fe8112f489e6d10dc810d017952fe0bd215bcd68 (
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
|