Specifying a no-indent for a list, with LaTeX
- by Andreas Grech
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?