astefanutti / decktape

PDF exporter for HTML presentations
MIT License
2.19k stars 176 forks source link

There should be the option to print with speaker notes #70

Open mjbright opened 8 years ago

mjbright commented 8 years ago

Not sure which of the supported frameworks have "Speaker Notes" (like remarkjs has).

It would be useful to be able to print

astefanutti commented 7 years ago

DeckTape 2.x is now responsible for the PDF creation so that should be a lot easier to implement.

tlvince commented 6 years ago

For reveal.js, this can be done by appending ?showNotes=true (or ?showNotes=separate-page) to the URL used in decktape (for now), e.g.:

decktape reveal 'http://localhost:8000/?showNotes=true' /tmp/deck.pdf

Edit: ?showNotes=separate-page doesn't seem to work; it renders notes inline (per ?showNotes=true)

dschuessler commented 3 years ago

For posterity: You can achieve this for remark.js by appending #p1 to the slides file name. So if you want to render slides.html together with speaker notes, just pass slides.html#p1 instead to decktape.

skwde commented 2 months ago

@astefanutti, I confirm that with decktape v3.14 the behavior reported by @tlvince is still true.

I.e.

Any plans on adding proper note export?