Hi,
I would like to continue the numbering of an enumerated list onto a subsequent slide. Usually I would do that with the enumitem package and module, but since this interferes with something on Beamer it's disabled. In LaTeX I would do something like this, which works. \begin{enumerate} \item First item \item Second item \newcounter{saveenum} \setcounter{saveenum}{\value{enumi}} \end{enumerate} \end{frame} \begin{frame}{next frame} \begin{enumerate} \setcounter{enumi}{\value{saveenum}} \item Third item \item Fourth item I can add \setcounter{saveenum}{\value{enumi}} as ERT, no drama, but if I put \setcounter{enumi}{\value{saveenum}} as ERT into the first item on the LyX document, the 'Third item' comes up as 1 and the 'Fourth item' as 4. If I put \setcounter{enumi}{\value{saveenum}} as ERT before the list, it has no effect, ie the 'Third item' comes up as 1 and the 'Fourth item' as 2. Is there a way of doing this in Beamer? With as little ERT as possible of course el