我想在框架的每张幻灯片上添加注释,我使用诸如 itemize[<+->] 或 \alert<2> 之类的覆盖选项。以下代码使注释出现在最后。在框架内使用 \note{itemize} 会导致错误。有什么建议吗?
\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}
答案1
对于框架内的使用,你可以\note[item]{}
像这样使用:
\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}