Search code examples
latexmarkdownpresentationbeamerpandoc

How to make PDF presentations in Markdown


Is there a LaTeX style, header, or something so that e.g. markdown2pdf from pandoc would produce a PDF having a new page with each H1/markdown heading? Cheers


Solution

  • Using a recent version of pandoc, you can do this:

    pandoc myslides.txt -t beamer -o myslides.pdf
    

    and you will get a nicely formatted PDF slide show. For further instructions, see the pandoc User's Guide.