Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make PDF presentations in Markdown [closed]

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

like image 433
type Avatar asked Jun 08 '11 19:06

type


People also ask

What is Markdown presentation?

Marp (also known as the Markdown Presentation Ecosystem) provides an intuitive experience for creating beautiful slide decks. You only have to focus on writing your story in a Markdown document.

How do you present an R presentation?

To create a new R Presentation you execute the New File -> R Presentation command: After specifying the location to save the presentation, a new presentation will be created and a preview will show within the Presentation tab in the upper right corner of the IDE.


1 Answers

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.

like image 80
John MacFarlane Avatar answered Sep 17 '22 16:09

John MacFarlane