I am trying to insert image shown below in the link in Latex Beamer. Just like using PowerPoint, I want show A first and then go to B and then C. I am wondering how to do this in Beamer?
Asked
Active
Viewed 603 times
0
-
1Are you generating the boxes with TikZ (or something else) or are you just inserting the image. A possible answer depends on where you start from. – Habi Jan 27 '16 at 09:45
-
Related? http://tex.stackexchange.com/questions/6135/how-to-make-beamer-overlays-with-tikz-node – Ignasi Jan 27 '16 at 12:30
1 Answers
4
If you want to draw your figure with TiKZ, it's possible to use the undocumented beamer overlay specifications detailed in reference on TikZ and Beamer overlay specifications
Your figure could be drawn with:
\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{frame}
\begin{tikzpicture}[every node/.style={fill=blue!40, draw=blue!70!black, thick, minimum width = 2cm}]
\node<1-> (a) {A};
\node<2->[right=of a] (b) {B};
\node<3->[right=of b] (c) {C};
\draw<2->[->, thick,blue!70!black] (a)--(b);
\draw<3->[->, thick,blue!70!black] (b)--(c);
\end{tikzpicture}
\end{frame}
\end{document}

