General\pause in beamer class

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
carol
Posts: 105
Joined: Wed Dec 24, 2008 7:25 pm

\pause in beamer class

Post by carol »

Hi,
When I use \pause in beamer class between in itemized environment, instead of pausing, it just duplicates the frames or slides (see attached pdf). When I remove \pause, the frames (slides) are not duplicate any more. Where does the bug come from?

Code: Select all

\documentclass{beamer}
\usepackage{beamerthemesplit}
\title{Example Presentation}
\author{Tim Clark (eclipse)}
\begin{document}
\frame{\titlepage}
\section[Outline]{}
\frame{\tableofcontents}
\section{Introduction}
\subsection{Overview of the Beamer Class}
\frame
{
\frametitle{Features of the Beamer Class}
\begin{itemize}
\item Normal LaTeX class.
\pause
\item Easy overlays.
\pause
\item No external programs needed.
\end{itemize}
}
\end{document}
Attachments
tmp.pdf
(28.05 KiB) Downloaded 547 times

Recommended reading 2024:

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

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

\pause in beamer class

Post by frabjous »

Is your latex system and beamer package up to date? When I compiled your code, I got this (which is different from what you posted):
play.pdf
(52.13 KiB) Downloaded 962 times
EDIT: A ha! I got your result when I compiled with LaTeX and then used dvipdfm, which is what you seem to be using. Can you just compile with pdflatex?
carol
Posts: 105
Joined: Wed Dec 24, 2008 7:25 pm

Re: \pause in beamer class

Post by carol »

you're right. I compiled with pdflatex and now, it works.

thank you!
Post Reply