ImI'm trying to create a beamer pptpresentation using pandoc+ + markdown. I want a sidebar that displays the sections of my pptpresentation.
somethingSomething like this : (desired output , not mine):
ifIf 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 docxdocumentation 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. correspondingCorresponding pandoc code : pandoc -t beamer -o beamer.tex testing_beamer_themes.md -s --mathml
pandoc -t beamer -o beamer.tex testing_beamer_themes.md -s --mathml butHowever this only displays the title and author in the sidebar, not the other slidesframes.
