如何揭示投影仪中列表之后的分段内容?

如何揭示投影仪中列表之后的分段内容?

当我想在 Beamer 中发现列表项时,列表后面的一些内容从一开始就已经存在。例如:

\documentclass{beamer}
\setbeamercovered{transparent}

\begin{document}
\begin{frame}
\frametitle{Example}
\begin{itemize}[<+->]
\item One
\item Two
\end{itemize}

This is what is showing up with item One, when it should show up after item Two.

\end{frame}
\end{document}

关于如何在整个列表可见后使列表后的任何内容显示出来,有什么想法吗?

答案1

使用

[...]
\end{itemize}

\onslide<+->{%
     This is what is showing up with item One, when it should show up after item Two.}
[...]

相关内容