I've tried the equivalent of the question Resuming a list when the two enumerate environments are on two different frames, but compiler will complain.
I.e.
\begin{frame}
\frametitle{A Survey of Computer Vision}
\framesubtitle{Fundamental Tasks of Computer Vision I}
\begin{enumerate}
\item one
\end{enumerate}
\end{frame}
\begin{frame}
\frametitle{A Survey of Computer Vision}
\framesubtitle{Fundamental Tasks of Computer Vision II}
\begin{enumerate}[resume]
\item two
\end{enumerate}
\end{frame}
produced the following error:
! TeX capacity exceeded, sorry [grouping levels=255].
\labelenumi ->{
\labelenumi }
l.255 \end{frame}
If you really absolutely need more capacity,
you can ask a wizard to enlarge me.
What is the correct way of doing so?
Thanks in advance
enumitemandbeamerdoesn't like each other. http://tex.stackexchange.com/questions/31505/trouble-combining-enumitem-and-beamer – percusse Dec 04 '12 at 18:03