[Tex/LaTex] Intertext like command in enumerate environment

#enumeratelists

I would like to insert some explanatory text between two items of a numbered list.

Is there a command that can do this in the same way as the \intertext command in an align environment?

Best Answer

Use the enumitem package and two separate enumerate environments, adding resume as option to the second environment.

\documentclass{article}

\usepackage{enumitem}

\begin{document}

Some text.

\begin{enumerate}
\item First item of enumerated list.
\item Second item.
\end{enumerate}

Some explanatory text.

\begin{enumerate}[resume]
\item Third item.
\end{enumerate}

\end{document}

enter image description here