![Cómo usar \note[itemize] para marcos con superposiciones](https://rvso.com/image/420890/C%C3%B3mo%20usar%20%5Cnote%5Bitemize%5D%20para%20marcos%20con%20superposiciones.png)
Me gustaría tener notas en cada diapositiva de un marco. Utilizo opciones de superposición como itemize[<+->] o \alert<2>. Los siguientes códigos hacen que las notas aparezcan al final. El uso de \note{itemize} dentro del marco genera un error. ¿Alguna sugerencia?
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen=right}
\begin{document}
\begin{frame} %\note[itemize] {\item first note for the whole frame \item second note for the whole frame} %%% uncomment for reproducing error
\begin{itemize}[<+->]
\item first item
\item second item
\end{itemize}
\end{frame}\note[itemize] {\item first note for the whole frame \item second note for the whole frame}
\end{document}
Respuesta1
Para el uso dentro de marcos, puedes usar \note[item]{}
así:
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen=right}
\begin{document}
\begin{frame}
\begin{itemize}[<+->]
\item first item
\item second item
\end{itemize}
\note<1>[item]{first note for the whole frame}
\note<2>[item]{second note for the whole frame}
\end{frame}
\end{document}