Beamer itemize:当将项目更改为图形项目时,警报不起作用

Beamer itemize:当将项目更改为图形项目时,警报不起作用

我做了一个演示,其中有一个“动画”列表,当前项目显示为红色。显示完最后一项后,我想将最后一项改为图形,以便以更生动的方式讨论最后一项。我的问题是,对于最后一项,我无法让警报正常工作。

\documentclass{beamer}
\usepackage{todonotes}
\begin{document}
    \begin{frame}
        \frametitle{Minimal working example}
        \begin{itemize}
            \item[]<2-|alert@2> A,

            \item[]<3-|alert@3> b,

            \item[]\only<4|alert@4>{ and c.} \only<5>{ \missingfigure[figheight=0.4\textheight]{Picture of c.}}
        \end{itemize}
    \end{frame}
\end{document}

这会产生一个五页 pdf我想要的是,在第四页,当“and c.”出现时,“and c.”应该是红色的,但事实并非如此。我做错了什么?

提前致谢!

答案1

这是你想要的吗?

        \item<4-|alert@4>[]%
        \only<4>{and c.}%
        \only<5>{\missingfigure[figheight=0.4\textheight]{Picture of c.}}

相关内容