3

I am using beamer, I would like to know how to use

\begin{enumerate}

\end{enumerate}

in two frames and without re-starting the count.

Obviously we can't use

    \begin{frame}
       \begin{enumerate}
          \item
          \item 
    \end{frame}
\begin{frame}
\item 
\item 

\end{enumerate}

\end{frame}

Ingmar
  • 6,690
  • 5
  • 26
  • 47

1 Answers1

2

You should do this maybe ?

\documentclass[12pt]{beamer}
\usetheme{Singapore}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{frame}{}
\begin{enumerate}
\item
\item
\end{enumerate}
\end{frame}
\begin{frame}{}
\begin{enumerate}\setcounter{enumi}{2}
\item 
\item
\end{enumerate}
\end{frame}
\begin{frame}{}
\begin{enumerate}\setcounter{enumi}{4}
\item
\item 
\end{enumerate}
\end{frame}
\end{document}
mxnc baud
  • 501