我知道如何在幻灯片中添加个人注释,这要归功于这个答案
但是,当我\pause
在框架内使用时,它会重复注释,如下例所示:
%\documentclass[notes]{beamer} % print frame + notes
\documentclass[notes=only]{beamer} % only notes
%\documentclass{beamer} % only frames
\begin{document}
\begin{frame}
\begin{itemize}
\item talk about sth
\pause
\item talk about other thing
\end{itemize}
\note{talk about sth more}
\end{frame}
\end{document}
我希望它只为该帧输出一个注释,我该怎么做?
答案1
您可以使用以下方式指定注释仅显示在第一个覆盖层上\note<1>{...}
您不应该使用notes=only
class 选项,它已经过时了,并且 beamer 会通过警告告知您这一点。
\documentclass{beamer}
\setbeameroption{show only notes}
\begin{document}
\begin{frame}
\begin{itemize}
\item talk about sth
\pause
\item talk about other thing
\end{itemize}
\note<1>{talk about sth more}
\end{frame}
\end{document}