presentations/monads/Makefile

12 lines
421 B
Makefile
Raw Normal View History

2024-11-14 16:13:31 +01:00
all:
make slide slideshow
slide:
pandoc -t beamer --include-in-header=./style.tex monads.md -f markdown-implicit_figures -V colorlinks=true -V linkcolor=blue -V urlcolor=red -o monads.pdf
slideshow:
pandoc -t beamer --include-in-header=./style.tex monads.md -f markdown-implicit_figures -V colorlinks=true -V linkcolor=blue -V urlcolor=red -i -o monads-slideshow.pdf
view:
zathura --mode=presentation monads.pdf &