You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
648 B
28 lines
648 B
NAME := EmbeddedRust
|
|
|
|
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
|