11 lines
429 B
Makefile
11 lines
429 B
Makefile
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 &
|