joostkremers / pandoc-mode

An Emacs minor mode for interacting with Pandoc.
https://joostkremers.github.io/pandoc-mode/
178 stars 14 forks source link

pandoc-convert-to-pdf does not work for beamer #40

Closed mardukbp closed 9 years ago

mardukbp commented 9 years ago

When the output format is beamer, pandoc is called with:

pandoc --read=markdown --output=slideshow.pdf

which results in a LaTeX compilation error. It should be called instead with:

pandoc --read=markdown -t beamer --output=slideshow.pdf

joostkremers commented 9 years ago

See if commit e55df4e fixes it.

mardukbp commented 9 years ago

Thank you!