speaker-note
speaker-note(mode: "typ", setting: it => it, subslide: auto, note)(source)Speaker notes are a way to add additional information to your slides that is not visible to the audience. This can be useful for providing additional context or reminders to yourself.
Multiple calls on the same slide are combined (accumulated), so all notes are shown together.
Example:
#speaker-note[This is a speaker note]
mode : str default: "typ"
The mode of the markup text, either typ or md. Default is typ.
setting : function default: it => it
A function that takes the note as input and returns a processed note.
subslide : none | auto | int | array | str default: auto
Restricts the note to specific subslides, similar to only. - auto (default): automatically determined from the current pause position. A note placed after #pause will automatically appear only from that subslide onward. - none: shown on all subslides regardless of position. - int, array, or string: shown only on the specified subslides.
note : content
The content of the speaker note. May contain #pause to reveal parts progressively.
Returns: content