我想创建一个枚举列表,并在第二张幻灯片上显示更多详细信息。我尝试以下操作
幻灯片 A
1 First
2 Second
3 Third
然而,在幻灯片 BI 上显示
1 First
2 Another topic before Second
3 Yet another topic before Second
4 Second
5 Third
应该显示,幻灯片 A 上的项目编号 2 与幻灯片 B 上的主题编号 4 相同。获得奇特的答复会很好。
答案1
这有效:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{enumerate}
\item First
\only<2->{
\item Another topic before Second
\item Yet another topic before Second}
\item Second
\item Third
\end{enumerate}
\end{frame}
\end{document}
但我建议这样做,同意 AlexG 的观点:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{enumerate}
\item First
\item<2-> Another topic before Second
\item<2-> Yet another topic before Second
\item Second
\item Third
\end{enumerate}
\end{frame}
\end{document}