I had problems with interputing an LaTeX enumeration and continuing it after that. I finally found the solution:

 \begin{enumerate}
   \item ...
   \item ...
   \item \label{it:ob:last}
 \end{enumerate}
 ...
 \begin{enumerate}\setcounter{enumi}{\ref{it:ob:last}}
   \item ...
   \item ...
 \end{enumerate}

thank you to some web sites:


Please Wait...