Document Classes ⇒ overlapping tikz based graphics on beamer
overlapping tikz based graphics on beamer
Let's say for each item in an itemize environment a part of the graphic is exposed, the graphic is done with tikz.
Any ideas, I found out with arrows but I could not get it done with a more complex graphic.
this is the code i used but it says that the figures are not found but they are recognized if used with out the overlapping
\begin{frame}
\input<1>{./figures/suma_ideal}%
\input<2>{./figures/y_tarde}%
\input<3>{./figures/y_tempra}%
\end{frame}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
overlapping tikz based graphics on beamer
The \input macro is not overlay aware. Try instead:patolfo wrote:
this is the code i used but it says that the figures are not found but they are recognized if used with out the overlappingCode: Select all
\begin{frame} \input<1>{./figures/suma_ideal}% \input<2>{./figures/y_tarde}% \input<3>{./figures/y_tempra}% \end{frame}
Code: Select all
\begin{frame}
\only<1>{\input{./figures/suma_ideal}}%
\only<2>{\input{./figures/y_tarde}}%
\only<3>{\input{./figures/y_tempra}}%
\end{frame}
For examples of how to use TikZ with Beamer you may find something useful here:
http://www.texample.net/tikz/examples/tag/beamer/
- Kjell Magne Fauske