I am making a presentation and I want to recall some pictures in my conclusion. The pictures are done using tikzpicture and are in separate files, with some overlay specifications. However, I want to recall only a specific overlay in the conclusion.
File: picture.tex
\begin{tikzpicture}
\draw at (0,0) circle (1);
\uncover<2->{
\draw at (2,0) circle (1);}
\uncover<3->{
\draw at (1,1) circle (1);}
\end{tikzpicture}
Then in my main file,
\documentclass{beamer}
\usepackage{amsmath}
\usepackage{tikz}
\begin{document}
\frame{\frametitle{The Picture}
Some text
\begin{center}
\input{picture}
\end{center}
}
\frame{\frametitle{Conclusion}
\begin{center}
\input{picture}
\end{center}
}
I would like to display only the overlay <2> in the conclusion without recalling the whole frame (with \againframe). Is there any way of doing that or should I create another file with only what I want to display on the last frame?

How to generate a series of \paused stand-alone TikZ images?can help you. The idea would be to generate a series ofstandaloneframeframes and include the desired one in your last frame. – Ignasi Jul 08 '14 at 08:02