6

Is there any substitute for itemize with [<-+>] option that has no conflict with beamer frame "allowframebreaks" option? using allowframebreaks will not allow [<-+>] option of itemize to do its work

V.Ajall
  • 95
  • 1
    the answer is simple: don't use allowframebreaks, it is evil! – samcarter_is_at_topanswers.xyz Oct 18 '17 at 15:25
  • Each \item creates a new page in the PDF. How is beamer supposed to keep track or which pages are <> and which are real pages? – John Kormylo Oct 18 '17 at 15:26
  • It seems that my question a bit ambiguous. I want to have two slides with the same title which has itemize. since the allowframebreaks break the itemize sequence job, I wanted something for substitution rather than doing it by hand. – V.Ajall Oct 18 '17 at 15:37

1 Answers1

6

With itemize you don't have to worry about consecutive numbering, so you can simply use two itemize environments:

\documentclass{beamer}

\begin{document}

\begin{frame}
\frametitle{title}

\begin{onlyenv}<1-6>
    \begin{itemize}[<+->]
        \item item 1
        \item item 2
        \item item 3
        \item item 4
        \item item 5
        \item item 6
    \end{itemize}
\end{onlyenv}

\begin{onlyenv}<7-12>
    \begin{itemize}[<+->]
        \item item 7
        \item item 8
        \item item 9
        \item item 10
        \item item 11
        \item item 12
    \end{itemize}
\end{onlyenv}

\end{frame} 

\end{document}