I have an odd list, interrupted by normal text introducing its last item:
\documentclass{memoir}
\usepackage{enumitem}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\begin{enumerate}[itemsep=-4pt]
\item My first item
\item My second item\\
Along with these should be mentioned:
\item My third item
\end{enumerate}
\end{document}
The text between item two and three, "Along with these...", is supposed to break out of the list and start at the left edge of the textblock. How do I push it to the left, if that's at all possible?
I already tried the following between item 2 and 3,
\end{enumerate}
\vspace{-2\baselineskip}
Along with these should be mentioned:
\vspace{-\baselineskip}
\begin{enumerate}[itemsep=-4pt]
\setcounter{enumi}{2}
but the inter line space was somewhat off.



nosepoption also gets rid of the vertical space before and after the enumeration. I need the tight spacing only between second item and the inserted line, and then again between that line and item 3. But in fact I should consider getting rid of the spaces before or after the list as well. – muk.li Apr 09 '15 at 14:39noitemseprather thannosepand adding vertical space before and below. – egreg Apr 09 '15 at 17:43