我想\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}