Is it possible to make the coordinate system to be fixed on several slides in a beamer presentation? So that each point with the same coordinates in different tikzpicture environments on different slides is in exactly the same position in the resulting PDF?
Example:
\documentclass{beamer}
\usepackage{tikz}
\begin{document}
\begin{frame}
\begin{tikzpicture}
\draw (0,0) circle (1cm);
\end{tikzpicture}
\end{frame}
\begin{frame}
\begin{tikzpicture}
\draw (0,0) circle (1cm);
\draw (2,2) circle (2cm);
\end{tikzpicture}
\end{frame}
\end{document}
How to modify this example, such that on both slides the circle at position (0,0) overlays?


(current page)coordinate. – Herr K. Dec 09 '13 at 19:48tikzpictureoccupies the same space (at least) vertically. This is achieved either by putting it in a box, or adding phantom elements in yourtikzpictureto match them (in this case, adding something to the firsttikzpicture). – Werner Dec 09 '13 at 20:23