I have looked around the site for a while and haven't found a specific answer about this particular problem:
I am typing up a paper and was asked to separate different sections with headings. I would like to use itemize to do so, but have had trouble with formatting. I want the text to align with the rest of the document, so I found I should use the enumitem package so that I can adjust leftmargin. Here is an example of what I have now:
\documentclass[12pt]{article}
\usepackage{lipsum, enumitem}
\begin{document}
\lipsum[1]
\begin{itemize}[leftmargin=0cm]
\item[I.] First Section
\lipsum[1]
\lipsum[2]
\item[II.] Second Section
\quad \quad \lipsum[3]
\end{itemize}
\end{document}
This is the exact format I want except I noticed that the paragraphs are no longer indented. I tried using \indent, but to no avail. For now, I am using \quad \quad, which is neither the same as an indent nor good markup, I'm sure.
Do any of you know a better way to approach this?
