Am Sonntag, den 08.05.2016, 23:56 -0400 schrieb S Shieh: > I would like to achieve in LyX the equivalent of > > \begin{frame}{WTF?} > \begin{enumerate} > \conti > \item yada > \end{enumerate} > \end{frame}
If you want this in every enumerate environment: \usepackage{etoolbox} \AtBeginEnvironment{enumerate}{\conti} If not, I would create a custom environment via Document > Settings > Local layout: Style ContiEnumerate CopyStyle Enumerate LatexName contienumerate Preamble \newenvironment{contienumerate}{\begin{enumerate}\conti}{\end{enumerate }} EndPreamble End HTH Jürgen