I have a TikZ picture that is animated. Unfortunately, that causes jumps in the content, as the centering is apparently not considering the animation.
I resize the picture with an adjustbox, so it fits the page nicely.
Is there a way to avoid page jumps in such a setup?
MWE:
\documentclass{beamer}
\usetheme{metropolis}
\usepackage{adjustbox}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{frame}{Demo}
\begin{adjustbox}{max width=\textwidth}
\begin{tikzpicture}[node distance=40pt]
\node<+-> [draw] (one) {One};
\node<+-> [draw,below=of one] (two) {Two};
\end{tikzpicture}
\end{adjustbox}
\end{frame}
\end{document}
