Hi all,
I'm working in a presentation with Latex and Beamer.
I want to add notes to every slides. I want presentation to show every slides' notes when the slide begins. I've added notes and they are shown when the slide to which they belong to finishes. I want notes to be shown as items in the slide, or at the beginning of the slide. Is it possible?
Thanks in advance.
Ezequiel
Document Classes ⇒ beamer | Notes in Presentation
NEW: TikZ book now 40% off at Amazon.com for a short time.

beamer | Notes in Presentation
Hi all, I've found my mistake. I was writing code this way:
And I've seen in thread Beamer - Notes on Laptop, Slides on Overhead that I'm supposed to write this other way:
Thanks!!
Code: Select all
\begin{frame}{My frame}
Body of the frame.
\end{frame}
\note{This is My frame's note.}
Code: Select all
\begin{frame}{My frame}
Body of the frame.
\note{This is My frame's note.}
\end{frame}