[Tex/LaTex] Splitting Notes in Beamer over 2 Pages

beamer

I often have a lot of notes for a specific slide in Beamer. When I try to print them out, Beamer leaves some of the notes off because they don't fit on the slide. Changing the font size sometimes solves the problem, but that can make the text hard to read. Is there a way to have Beamer tell if all the notes will fit on a page and if they don't, make a new frame with the rest of the notes?

Best Answer

If you put [allowframebreaks] on the frame then beamer will automatically break the slide and change the title to Really Long Slide I, Really Long Slide II, etc. See example below and see it in action at the link

\documentclass{beamer}

\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{blindtext}

\begin{document}

\begin{frame}[allowframebreaks]{Really Long Slide}

\blindtext[5]

\end{frame}

\end{document}