[Tex/LaTex] indent only first line in customized enumerate

#enumerateindentation

As I enumerate huge blocks of words, Latex automatically indents the entire paragraph. To save some space I want Latex to indent only the first line and leave the rest with full width.

Indent first line only in customized list is exactly the same, but author uses list instead of enumeration and \bullet instead of \arabic. I tried to follow its pattern and tried different options, changing {list} to {enumerate}, \bullet to \arabic, etc. but no success. Can somebody please help me? Thanks!

Best Answer

Like this?

\documentclass[11pt]{article}
\usepackage{enumitem}
\usepackage{lipsum}

\setlist[enumerate]{itemindent=\dimexpr\labelwidth+\labelsep\relax,leftmargin=0pt}

\begin{document}
\lipsum[4]
\begin{enumerate}
\item \lipsum[4]
\item \lipsum[4]
\end{enumerate}
\end{document}

enter image description here

As Harish Kumar mentions in his comment, the wide key can also be used:

\documentclass[11pt]{article}
\usepackage{enumitem}
\usepackage{lipsum}

\setlist[enumerate]{wide=\parindent}

\begin{document}
\lipsum[4]
\begin{enumerate}
\item \lipsum[4]
\item \lipsum[4]
\end{enumerate}
\end{document}

enter image description here

Related Question