Luna
unread,Oct 3, 2009, 6:27:13 AM10/3/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to LaTeX Users Group
Hello,
I am using beamer, and I cannot figure out why the "pause" command
does not work with "allowframebreaks" together in one frame... I tried
to use \only and \onslide instead of \pause but they did not work as
well... Since the slide is too long I have to use "allowframebreaks",
but when I do that, I get multiple slides yet nothing shows after the
first "pause" until the beginning of the second frame.
Here is my file:
\documentclass{beamer}
\usepackage{beamerthemeshadow}
\setbeamertemplate{frametitle continuation}[from second][]
\begin{document}
\title{Example}
\author{Someone}
\frame{\titlepage}
\frame{\frametitle{Table of Contents}\tableofcontents}
\section{Introduction}
\subsection{Definitions}
\begin{frame}[allowframebreaks] \frametitle{Definitions}
\setbeamercovered{dynamic}
Write sentence one. \pause
\begin{enumerate}
\item 1 \pause
\item 2 \pause
\item 3 \pause
\item 4 \pause
\end{enumerate}
\end{frame}
\section..........
......................
......................
\end{document}
-----------------------------
I am breaking the first frame after item 2. However, none of the items
after "write sentence one" are showing. They are only transparent...
Does anybody have a solution to this problem? Please help...