Presentation as of 9/12/2018, presented at LDUG

This commit is contained in:
2018-09-13 10:44:06 -06:00
commit e3565057ed
9 changed files with 1339 additions and 0 deletions

29
Makefile Normal file
View File

@@ -0,0 +1,29 @@
# Use nix-shell -p pandoc to bring pandoc into the path
NAME := Types
THEME := metropolis
THEME_FILES := beamercolortheme${THEME}.sty \
beamerfonttheme${THEME}.sty \
beamerinnertheme${THEME}.sty \
beameroutertheme${THEME}.sty \
beamertheme${THEME}.sty \
pgfplotsthemetol.sty
.PHONY: all clean tex-clean
all: ${NAME}.pdf
body.tex: ${NAME}.md
pandoc --pdf-engine=xelatex -t beamer -V theme:${THEME} -o body.tex ${NAME}.md
${NAME}.pdf: head.tex body.tex
xelatex head.tex
xelatex head.tex
mv head.pdf ${NAME}.pdf
tex-clean:
@rm -f *.aux *.log *.nav *.out *.snm *.toc *.vrb body.tex
clean: tex-clean
@rm -f *.pdf