I'm trying to create a beamer presentation using pandoc + markdown. I want a sidebar that displays the sections of my presentation.
Something like this (desired output, not mine):
If I click on any of the links in the sidebar, it takes me to that section, which isn't necessarily named like the thing in the sidebar.
I've come up with this after some digging in the beamer documentation and net:
--- title: "Your Presentation Title" author: "Your Name" date: "October 2024" output: beamer header-includes: - \usetheme{Berkeley} - \usecolortheme{sidebartab}{\insertsectionnavigation} --- # Introduction This slide provides an introduction to the topic. # Functions ## What are Functions? A function is a block of code that performs a specific task. Corresponding pandoc code:
pandoc -t beamer -o beamer.tex testing_beamer_themes.md -s --mathml However this only displays the title and author in the sidebar, not the frames.


\usecolorthemedoes not look like the right command to add structural information into the side-bar.\usecolortheme{sidebartab}{\insertsectionnavigation}will definitely cause an error, overleaf unfortunately is just good at hiding errors. Always check the top right corner for the tiny red square.