Graphics, Figures & Tables ⇒ Beamer-incompatibily between images and dynamics
Beamer-incompatibily between images and dynamics
\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.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Beamer-incompatibily between images and dynamics
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
Beamer-incompatibily between images and dynamics
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}
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}
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Beamer-incompatibily between images and dynamics
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
Re: Beamer-incompatibily between images and dynamics
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