Graphics, Figures & TablesBeamer-incompatibily between images and dynamics

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
pdela
Posts: 15
Joined: Sun May 01, 2011 6:39 pm

Beamer-incompatibily between images and dynamics

Post by pdela »

If I include figures in a beamer document I'm doing all the dynamics elements
\pause, \begin{itemize}<-+> , etc go awry (and don't do what it should), this happen with all the dynamic elements through all the document not just the frame in which the picture was inserted. The problem disappear once the figure is supressed. Any idea on why this is happening?

Thanks in advance!

Pablo.
Last edited by pdela on Sun May 01, 2011 8:59 pm, edited 1 time in total.

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

Beamer-incompatibily between images and dynamics

Post by Stefan Kottwitz »

Hi Pablo,

welcome to the board!

Perhaps post a minimal working example which demonstrates the problem. That would make it easier to check and to fix it.

Stefan
LaTeX.org admin
pdela
Posts: 15
Joined: Sun May 01, 2011 6:39 pm

Beamer-incompatibily between images and dynamics

Post by pdela »

Code: Select all

\documentclass{beamer} %Inicio de presentación
\mode<presentation> {
\usetheme{Antibes} % Tema seleccionado.
\usecolortheme{fly} % Color del tema.
\setbeamercovered{transparent} % Transparencia.
}
\usepackage[T1]{fontenc}
\usepackage[spanish]{babel}
\usepackage[latin5]{inputenc}

\usepackage{graphics} % Allows for eps images

\begin{document}
\begin{frame}
 \begin{itemize} [<+-| alert@+>]
  \item first
  \item second
  \item third
 \end{itemize}
\end{frame}
if you finish here it compiles.
Now I add a frame with a picture .ps

Code: Select all

\begin{frame}
 \begin{figure}[htp]
\centering
\includegraphics[scale=0.4]{basew}
\caption{La base $\alpha$ y la base $\omega$}\label{basew}
\end{figure}
\end{frame}

\end{document}
Added the picture but the rest is messed up!!!
Last edited by Stefan Kottwitz on Sun May 01, 2011 7:26 pm, edited 1 time in total.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

Re: Beamer-incompatibily between images and dynamics

Post by Stefan Kottwitz »

Hi Pablo,

for posting code you can use the code environment of this forum, for readability. Just use the code button when editing. I did this for you now.

I tested the code. It's not messed up. What happens on your side? Perhaps post the damaged pdf as attachment here.

I can see you use graphics. It would be better to load graphicx instead, it's an improved version.

Stefan
LaTeX.org admin
pdela
Posts: 15
Joined: Sun May 01, 2011 6:39 pm

Re: Beamer-incompatibily between images and dynamics

Post by pdela »

Hi Stefan,

thanks, it seems to work well if the image is jpeg and I use pdfLaTeX.

I don't know why LaTeX-->dvi-->pdf is not working well with .ps images.

Thanks!
Pablo
Post Reply