Skip to content
This repository has been archived by the owner on Dec 1, 2017. It is now read-only.

This panflute pandoc filter allowed to use markdown in LaTeX notes. Use <div class="notes"></div> or http://pandoc.org/MANUAL.html#speaker-notes instead!

License

Notifications You must be signed in to change notification settings

shoeffner/pandoc-beamer-notes

Repository files navigation

pandoc-beamer-notes

Warning: This package only exists for legacy reasons, do not use it anymore!

Instead, use pandoc's built-in mechanism for note slides:

# My frame
<div class="notes">
My **Notes**:

- Don't use any filters, unless they are useful!
- This is all still in *pandoc*

</div>

# My next Frame ...

And compile with

pandoc -t beamer -V classoption=notes ...

Thanks to Norman Markgraf to make me aware of this and providing the simple example above.

For more information check out shoeffner/pandoc-beamer-notes#3.

Legacy usage

pandoc-beamer-notes is a panflute pandoc filter. It allows to use markdown in LaTeX notes.

Thus something like the following will be rendered nicely:

\note{**this is bold**}
\note{
* a list
* is also possible
}

See the example for a simple presentation containing notes.

Remember to compile your documents with the notes enabled for beamer:

pandoc -t beamer -V classoption=notes ...

Installation

Just use pip to install it from pypi.

pip install pandoc-beamer-notes