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

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

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