I have the following tikz picture in Beamer
\usetikzlibrary{fit,calc,positioning,matrix,decorations.pathmorphing}
\begin{tikzpicture}[scale=0.8,system/.style={draw,rectangle,rounded corners=3,minimum width=2cm,text width=1.8cm,text centered}]
\node [system] (fe) {Feature Extraction};
\node [system] (am) [right=of fe] {Acoustic Model};
\draw[->] (fe) |- (am);
\draw[<-,decorate,decoration={snake,pre length=6mm,segment length=2mm,amplitude=3mm}] (fe.west) -- ++(-2cm,0);
\node<2-> [above=of fe.north] {Fast Fourier Tranform};
\end{tikzpicture}
As you can see I add a node in a second slide. However, the whole picture will jump when this is added.
How can I prevent my picture from jumping?
\documentclass{beamer} \usepackage{tikz}was guessable, but I had to dig to figure out which tikzlibraries you were loading. Thanks! – Andrew Stacey Dec 06 '10 at 08:37