[Tex/LaTex] Beamer multiple note pages for one slide

beamernotes

in my Beamer document I use \setbeamertemplate{note page}[plain] to create a page with additional informations about the slide for my handouts.

\begin{frame}{test}
    some text or figure
\note{discription in handout}
\end{frame}

This is a perfect solution for short Informations. Now, I have a slide which need more than one page of additional informations to explain. How can I create additional note pages?

\begin{frame}
    \note{
        more Infomations
    }
\end{frame}

will add an empty page (both in handout and non handout mode).

Thanks in advance!

Best Answer

You can create multiple note pages per frame, by using overlay arguments:

\documentclass{beamer}

\setbeameroption{show notes}

\begin{document}

\begin{frame}
    test
    \note<1>{information}
  \note<2>{more information}
\end{frame}

\end{document}