是否可以在框架中插入“独立”幻灯片,然后返回?

是否可以在框架中插入“独立”幻灯片,然后返回?

在显示项目时,是否有可能转到独立框架(或类似的东西)来显示示例,然后再返回到项目?

类似于...那:

\begin{frame}[first]
 \begin{itemize}
  \item<1> foo
  \item<2> bar
  % go to [second] and then go back here to see 3rd point
  \item<3> baz
 \end{itemize}
\end{frame}

\begin{frame}[second]
 % Some examples
\end{frame}

(我不关心示例中的第二个框架是否是一个真正的“框架”,我只是想知道实现这种东西的最佳方法)

答案1

\documentclass{beamer}

\begin{document}

\begin{frame}<1-2>[label=foo]
 \begin{itemize}
  \item<1> foo
  \item<2> bar
   \item<3> baz
 \end{itemize}
\end{frame}

\begin{frame}{second}
  Some examples
\end{frame}

\againframe<3>{foo}


\end{document}

相关内容