显然,下面的操作不能达到我想要的效果,即在发现注释时突出显示注释:
\documentclass{beamer}
\usepackage{pgfpages}
\AtBeginNote{\beamerdefaultoverlayspecification{<*>}}
\begin{document}
\setbeameroption{show notes on second screen=right} % Both
\begin{frame}
\begin{itemize}[<+->]
\item Something \note<.->[item]{\alert<.>{Hallo!}}
\item Something \note<.->[item]{\alert<.>{Hallo!}}
\item Something \note<.->[item]{\alert<.>{Hallo!}}
\end{itemize}
\end{frame}
\end{document}
检查计数器时beamerpauses
,似乎有些不对劲;它直接从 1 跳到 4,可能是因为注释页稍后处理。但以下操作也不起作用:
\documentclass{beamer}
\setbeameroption{show notes on second screen=right}
\AtBeginNote{\beamerdefaultoverlayspecification{<*>}}
\begin{document}
\begin{frame}
\begin{itemize}
\item<1-> Something \note<1->[item]{\alert<1>{Hallo!}}
\item<2-> Something \note<2->[item]{\alert<2>{Hallo!}}
\item<3-> Something \note<3->[item]{\alert<3>{Hallo!}}
\end{itemize}
\end{frame}
\end{document}
有没有更聪明的方法来实现我的目标?
答案1
如果您的项目不是框架中的最后一张幻灯片,您可以执行以下操作:
\documentclass{beamer}
\setbeameroption{show notes on second screen=right} % Both
\AtBeginNote{\beamerdefaultoverlayspecification{<*>}}
\begin{document}
\begin{frame}
\begin{itemize}[<+->]
\item Something \note<.->[item]{\alert<+>{Hallo!}}
\item Something \note<.->[item]{\alert<+>{Hallo!}}
\item Something \note<.->[item]{\alert<+>{Hallo!}}
\end{itemize}
\uncover<+>{one more overlay}
\end{frame}
\end{document}