diff options
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..fe8112f --- /dev/null +++ b/build.sh | |||
@@ -0,0 +1,15 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | # Dependencies: | ||
4 | # | ||
5 | # - pandoc | ||
6 | # - LaTeX with: | ||
7 | # - XeLaTeX | ||
8 | # - pgfpages, fvextra, and csquotes | ||
9 | # - Recent (Git) Metropolis theme | ||
10 | # - Recent (Git) Owl color theme | ||
11 | # - See https://pandoc.org/MANUAL.html#creating-a-pdf for additional | ||
12 | # dependencies | ||
13 | |||
14 | |||
15 | pandoc slides.md -t beamer -so slides.pdf --highlight-style breezedark --pdf-engine xelatex | ||