-
Is it possible to add speaker notes to the title slide of a Revealjs presentation produced in Quarto? I know how to add notes to all other slides, but not the title slide. (I don't think it matters, but I'm using JupyterLab.) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You'll have to modify the title slide partial, see https://quarto.org/docs/journals/templates.html#revealjs-partials. Note that, you could also add a yaml key "note" into the partial which would allow you to specify notes for the title slide. |
Beta Was this translation helpful? Give feedback.
-
Link to revealjs doc about this too: https://quarto.org/docs/presentations/revealjs/advanced.html#custom-template Otherwise, there is probably an option using a revealjs specificity, and Pandoc feature.
Try this example ---
title: Test
title-slide-attributes:
data-notes: Some speaker notes
format: revealjs
---
## content
::: notes
Some other notes
::: See also this comment jgm/pandoc#5237 (comment) that gives some details. Hope it helps |
Beta Was this translation helpful? Give feedback.
Link to revealjs doc about this too: https://quarto.org/docs/presentations/revealjs/advanced.html#custom-template
Otherwise, there is probably an option using a revealjs specificity, and Pandoc feature.
data-notes
attributestitle-slide-attributes
Try this example