如何同步 Beamer 笔记和暂停命令?

如何同步 Beamer 笔记和暂停命令?

我想\pause在我的讲义中使用,我想要一个只有笔记的版本,可以在每次暂停之前发现不同的笔记。我想使用语法\note<.>{"my note"},因为我对“。”的理解是它指的是当前beamerpauses计数器。但是当我这样做时,就像在这个例子中一样,我没有得到预期的效果。事实上,我没有得到所有的笔记:

\documentclass[t, 14pt]{beamer}
\setbeameroption{show only notes} 

\begin{document}

\begin{frame}
\begin{itemize}
\item First things first
\note[item]<.>{Say ``first things first''}
\pause
\item Second things second
\note[item]<.>{Say ``second things second''}
\pause
\item Third things third
\note[item]<.>{Say nothing...}
\pause
\item 4th thing
\end{itemize}
\end{frame}

\end{document}

其结果是:

在此处输入图片描述

请注意,第一条注释(“说‘首先要做的事’”)甚至不存在。第二条注释在第二个要点之前就存在了。

我考虑放弃该\pause命令并使用\note<+>命令,正如评论中所建议的那样这个答案,但它只会导致我的笔记暂停,而不会导致幻灯片暂停。

如何让每个暂停命令都包含一条注释?如何让它们在演示和注释模式下都暂停?

我还应该指出,如果我\note<1>{...}使用\note<2>{...}获得所需的效果。我只是不想跟踪\pause我执行了多少个覆盖命令,所以我想我应该问

你怎么容易地每个暂停命令都有一个注释吗?

答案1

而不是\pause,您可以使用覆盖规范itemize

\documentclass[t, 14pt]{beamer}
\setbeameroption{show only notes} 

\begin{document}

\begin{frame}
\begin{itemize}[<+->]
\item First things first
\note<.>[item]{Say ``first things first''}
\item Second things second
\note<.>[item]{Say ``second things second''}
\item Third things third
\note<.>[item]{Say nothing...}
\item 4th thing
\end{itemize}
\end{frame}

\end{document}

相关内容