Graphics, Figures & Tablesbeamer | Graphics Placement

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
jannetta
Posts: 46
Joined: Mon Dec 22, 2008 12:59 pm

beamer | Graphics Placement

Post by jannetta »

Hi folks

I am busy with a presentation in beamer. I would like to place graphics on specific places in the slide and I want the images to display one after the other - like one would do with \item.

I have done some Googling but I could not get, what I found, to work. Could anyone perhaps suggest something.


Many thanks
Jannetta

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

jazzgossen
Posts: 26
Joined: Mon Mar 09, 2009 3:19 pm

beamer | Graphics Placement

Post by jazzgossen »

Sounds like \overlayarea is what you're looking for.

Code: Select all

\begin{overlayarea}{\textwidth}{3cm}
	\only<1>{\includegraphics{xxx}}
	\only<2>{\includegraphics{yyy}}
\end{overlayarea}
Would that work?
Post Reply