[Tex/LaTex] Specifying a no-indent for a list

#enumerateindentationlists

I have the following:

This is just normal text...

\begin{enumerate}
\item First Item ?\\\\
This is the text of the first item
\item Second Item ?\\\\
This is the text of the second item
\end{enumerate}

Which renders the following:

This is just normal text...

1. First Item ?

   This is the text of the first item

2. Second Item ? 

   This is the text of the second item

I want to specify that the text of the items has no indentation. Basically, I want it to be rendered like such:

This is just normal text...

1. First Item ?

This is the text of the first item

2. Second Item ? 

This is the text of the second item

How can I specify this form of no indentation?

Best Answer

Using package "enumitem":

\documentclass{article}

\usepackage{enumitem}

\begin{document}

\noindent Foo bar:
\begin{enumerate}[leftmargin=0cm,itemindent=.5cm,labelwidth=\itemindent,labelsep=0cm,align=left]
\item First Item ?\\
This is the text of the first item
\item Second Item ?\\
This is the text of the second item
\end{enumerate}


\end{document}
Related Question