Document Classesbeamer | Notes in Presentation

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
epecker
Posts: 2
Joined: Wed Apr 18, 2012 7:20 pm

beamer | Notes in Presentation

Post by epecker »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

epecker
Posts: 2
Joined: Wed Apr 18, 2012 7:20 pm

beamer | Notes in Presentation

Post by epecker »

Hi all, I've found my mistake. I was writing code this way:

Code: Select all

\begin{frame}{My frame}
Body of the frame.
\end{frame}
\note{This is My frame's note.}
And I've seen in thread Beamer - Notes on Laptop, Slides on Overhead that I'm supposed to write this other way:

Code: Select all

\begin{frame}{My frame}
Body of the frame.
\note{This is My frame's note.}
\end{frame}
Thanks!!
Post Reply