-
-
Notifications
You must be signed in to change notification settings - Fork 16.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add possibility to print speaker notes #1518
Conversation
Hey! Thanks for the PR but we already support printing notes to PDF. This is made possible via the You can test this on the demo page, slide 10 has some notes: http://lab.hakim.se/reveal-js/demo.html?print-pdf&showNotes=true |
I know. But |
You're right that the current notes design doesn't allow for very long notes. We should try to improve that in the existing solution rather than adding a secondary way to print. Perhaps an additional config value that pushes printed notes to a separate page? Alternatively we could move notes to the right of the slide as a vertical column that spans the full height of the page and about 20-30% of the width. All config parameters can be set as url params, so you can just add ?showNotes=true to the URL. This works with other properties too, four example you can turn on auto-sliding every five seconds by adding |
I didin't know about the possibility of setting config params by the url. notesLayout: 'none' // no notes shown
notesLayout: 'default' // = 'none'
notesLayout: 'inline' // like the current 'showNotes' behaviour
notesLayout: 'side' // Slide size resized to 70% and a notes bar of 30% width on the right
notesLayout: 'separatePage' // On the following page This notesLayout: 'notesWithCommentLines' // will include css/print/notes/notesWithCommentLines.css |
I'm a teacher and I'm VERY much interested in the alternative "notes" you On Mon, May 23, 2016 at 7:15 AM, Hakim El Hattab [email protected]
Eduardo Grosclaude |
I like the idea of a layout option for notes. I went ahead and implemented at least the start of it in 3111d3b. Instead of a new config value, I'm re-using the existing showNotes option. Here's a list of what values you can set showNotes to:
For now, the only supported layout is |
👍 That's great! |
Print speaker notes on a separate page after each slide if
print-pdf
andprint-notes
are given in url.