Suppose I prepare a talk using the beamer class. To each slide I want to add personal notes (detailing what I exactly want to say, frequently asked questions etc.). So is there a smart way to write those notes into the same file and get a nice printed version of my slides with my personal comments (of course the presentation itself should be without those notes)?
Asked
Active
Viewed 5.1k times
102
-
4also note the question about how to display those best, in http://tex.stackexchange.com/q/84622/33322 - the answer there being pdfpc – anarcat Feb 10 '16 at 22:40
1 Answers
105
You are interested in the \note command. Please refer to Section 19 Adding Notes for Yourself of the beamer manual.
A little example (taken from the manual):
\documentclass{beamer}
%\setbeameroption{show notes} un-comment to see the notes
\begin{document}
\begin{frame}
\begin{itemize}
\item<1-> Eggs
\item<2-> Plants
\note[item]<2>{Tell joke about plants.}
\note[item]<2>{Make it short.}
\item<3-> Animals
\end{itemize}
\end{frame}
\end{document}
To print the note pages without hints or fancy settings, you can use the plain option for the note page template:
\setbeamertemplate{note page}[plain]
mckbrd
- 103
Gonzalo Medina
- 505,128
-
4Also, when you want to present this on an extended screen, I can highly recommend the (Windows/Linux/Mac) software pympress to display this in presenter mode. Other options are listed here. – fishlein Jan 04 '22 at 21:32
-
-
Nice! I can print a version without notes, a version with notes. But is it possible to print a version with only the notes? – Arne Timperman Jan 18 '24 at 16:56