Slides
Preentation slides are greatly faciliated by Markdown, as is shown here.
It is notable that the LaTeX environment needs to be made available, e.g., module load texlive
.
The toy slides are in slides.md.
The slides in PDF are rendered as follows,
#!/usr/bin/bash
pandoc -t beamer --variable theme:metropolis slides.md -o slides.pdf
See slides.pdf.
html
This could be done as follows via pandoc
but marp
appears to be far better,
pandoc -t revealjs --variable theme:metropolis -s slides.md -o slides.html
marp slides.md
See slides.html.