Is there a way to have a normally indented paragraph in the middle of an enumerate/itemize environment? Something more elegant that manually numbering the \items, or a clean way to tinker with counters? Here's what I mean:
\documentclass{article}
\begin{document}
\begin{enumerate}
\item Numbered as One
\item Numbered as Two
It would be really cool to take a break from numbering
and have a normally (further left) indented paragraph here.
\item Numbered as Three
\end{enumerate}
\end{document}
enumitempackage defines theresumeandresume*keys. – Bernard Jun 21 '21 at 18:06