decktape icon indicating copy to clipboard operation
decktape copied to clipboard

There should be the option to print with speaker notes

Open mjbright opened this issue 9 years ago • 4 comments

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

It would be useful to be able to print

  • slides + note pages
  • note pages alone (numbered according to corresponding slides)

mjbright avatar Sep 30 '16 21:09 mjbright

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

astefanutti avatar Aug 25 '17 15:08 astefanutti

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)

tlvince avatar Mar 27 '18 11:03 tlvince

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.

dschuessler avatar Aug 30 '21 09:08 dschuessler