Specifying a no-indent for a list, with LaTeX

Posted by Andreas Grech on Stack Overflow See other posts from Stack Overflow or by Andreas Grech
Published on 2010-06-06T10:36:44Z Indexed on 2010/06/06 10:42 UTC
Read the original article Hit count: 462

Filed under:
|
|

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?

© Stack Overflow or respective owner

Related posts about latex

Related posts about indentation