That just seams to push the "1." to the right and not effect the "(a)"
I'm Ok with just using the negative value. But I just noticed something. Is there a way to justify the text so it's the same length on each of the first lines? So:
"This is the first item in this list here on this page"
AND
"Now we have the second item in the list here on"
are the same width.
Code: Select all
\documentclass{article}
\usepackage{mathtools}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}[align=left]
\item
\begin{enumerate}
\item This is the first item in this list here on this page\\
it continues to the next line.
\item Now we have the second item in the list here on\\
this page, this also continues to the next line.\\
\end{enumerate}
\end{enumerate}
\end{document}