-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Markdown extension for speaker notes #925
Comments
+1 |
I agree, this would be a useful feature. Now I have to write speaker notes as comments in source markdown and have it opened while the presentation is going. |
It's easy to do this already for revealjs:
Beamer doesn't seem to have good support for speaker notes -- it's a huge kludge involving a double-wide PDF. So I'm not inclined to support these generally at the moment. |
Currently, I am using HTML comments for notes in presentations for Beamer. Using XHTML or DocBook as intermediate format, the comment can without much effort be transformed to a notes-only document, so support of notes in Beamer is not really essential, but only an interesting non-essential feature. |
It would be useful to specify some text in a markdown file as hidden notes. This text could then be used as speaker notes for different presentation formats:
note{}
aside
blocksnotes
classThere are some solutions:
Note:
[[[
before any note block and 2 or 3 empty lines after>!
(even though, it poses a problem for Latex outputs)@@@
fences for hiding solutions (see Pull Initial support for supporting School of Haskell Markdown #832 and this)I think the first solution (
Note:
) is the one that is the most readable in plain text. There could be two ways to use it:It may also be generalized as a solution for hiding content (
Hidden:
instead ofNote:
?) with a general option like--include-hidden-notes
for generating output with the notes and no note by default. I could use such a mechanism in an educational context for generating questions with and without corrections (in this case, a pdf or latex writer could use a solution similar to what is provided by theexam
class). It may also be related to Issue #254 if we consider that comments are hidden content that should not be present in the output by default.The scope of a general mechanism may be too large, but it would be great to add speaker notes and to control their inclusions in the output presentations as I do not always distribute my notes (but this last inclusion feature may be only relevant in an education context).
The text was updated successfully, but these errors were encountered: