presentations/rusttechx-2024/Makefile

12 lines
429 B
Makefile
Raw Normal View History

all:
make slide slideshow
slide:
pandoc -t beamer rusttechx.md --filter pandoc-plot -f markdown-implicit_figures -V colorlinks=true -V linkcolor=blue -V urlcolor=red -o rusttechx-2024.pdf
slideshow:
pandoc -t beamer rusttechx.md --filter pandoc-plot -f markdown-implicit_figures -i -V colorlinks=true -V linkcolor=blue -V urlcolor=red -o rusttechx-2024-slideshow.pdf
view:
zathura --mode=presentation rusttechx-2024.pdf &