有时我会在项目中增加投影仪计数器,以控制何时显示文本。我想同时影响“警报”。
例如,我经常做以下的事情:
\documentclass{beamer}
\begin{document}
\begin{frame}[<alert@+|+->]{Using information under uncertainty}
\begin{itemize}
\item One item.
\item<alert@+-.(2)|+-> What is the answer to this fascinating question? \uncover<+->{\textcolor{green}{A (fascinating) answer}, but I want the question
still alerted in addition to this part.}
\item Another item.
\end{itemize}
\end{frame}
\end{document}
我喜欢这个 PDF 输出。
我正在寻找一种方法来实现相同的 PDF 输出,但无需指定<alert@+-.(2)|+->
。也就是说,我正在寻找一种方法,让警报根据项目中的 beamercounter 增加的时间自动调整。
编辑:理想情况下,我想在条目级别和/或文档级别(即序言)打开/关闭此警报自动适应行为。但是,如果我至少可以删除该硬编码,2
我就会更高兴。也就是说,如果我在同一个条目中有多个发现,我目前需要进行2
相应的调整。如果我仍然必须为每个\item
我想要此行为的地方指定某些内容,只要我可以执行类似“<alert@+-.(Q)|+->”的操作,其中 Q 会被自动替换,这将是一个不错的改进。