Is it possible to switch to another frame during detailing with LaTeX Beamer?

Basically I want to do something like this:

\begin{frame}{Frame 1} \begin{itemize} \item A \pause \item B \pause \item C \pause \showsubframe % continue here \item D \pause \item E \pause \end{itemize} \end{frame} \begin{frame}{Subframe} % only show this during Frame 1, not also after % something to help explain point C from Frame 1 \end{frame} 

Does anyone know how I can show one frame while another? In addition, I assume that I will need to define a subframe somewhere (for example, after the main frame), and I do not want to show it again after the main frame.

Thank you for your time!

+7
latex beamer
source share
1 answer

You can use \againframe to resume displaying the previous frame.

Example:

 \frame<1-3>[frame1]{ \begin{itemize} \item<1-> A \item<2-> B \item<3-> C \item<4-> D \item<5-> E \end{itemize} } \frame{ % something to help explain point C from Frame 1 } \againframe<4->{frame1} 
+8
source share

All Articles