[Tex/LaTex] Continuing list item after sublist in Lyx

listslyx

I'm trying to continue a list item after existing a sublist, like so:

  • Content
    1. sublist
    2. sublist

    Continuing CONTENT…

  • bla bla

For some reason when trying to write the Continuing CONTENT
I either had the option to continue the list (as in – creating another sublist item) or creating another list item (like bla bla)
Any ideas?

Best Answer

This is perfectly possible. You just have to switch the paragraph type of the unwanted "3." enum item back to "Standard" to continue an item of an enclosing list:

screen shot

Here is the code that LyX 2.0 generates out of this:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\begin{document}
\begin{itemize}
\item Content

\begin{enumerate}
\item sublist
\item sublist
\end{enumerate}

Continuing CONTENT

\item bla bla
\end{itemize}

\end{document}
Related Question