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
Asked
Active
Viewed 1,890 times
6
1 Answers
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}
samcarter_is_at_topanswers.xyz
- 158,329
-
Is there any possibility to set a flag or bookmark for some object to set its presence after or before something else? – V.Ajall Oct 19 '17 at 08:19
-
-
-
@V.Ajall Sorry, but I do not understand what you are trying to do. Maybe ask a new question with some example what you are trying to do? – samcarter_is_at_topanswers.xyz Oct 20 '17 at 14:57
-
If you put <2>includegraphic{...} before \end{frame} it will be shown with second item in itemize. i want to set a flag for an item(not necessary to know its index number in itemize) and then show it with that specific item! – V.Ajall Oct 21 '17 at 10:17
-
@V.Ajall Is https://tex.stackexchange.com/a/50493/36296 what you are looking for? – samcarter_is_at_topanswers.xyz Oct 21 '17 at 12:58
-
allowframebreaks, it is evil! – samcarter_is_at_topanswers.xyz Oct 18 '17 at 15:25