I'm trying to make an enumerated checklist that looks like this:
Paragraph text here that says really cool stuff. Notice how the list after is
properly indented
___ 1. Thing 1
___ 2. Thing 2
___ 3. Thing 3
And the paragraph afterward, with good margins
This (though cumbersome) gets pretty close, but for some reason the margin gets messed up:
Paragraph text that says really cool stuff.
\begin{enumerate}
\item[\underline{\hspace{0.5in}} 1.]
\item[\underline{\hspace{0.5in}} 2.]
\item[\underline{\hspace{0.5in}} 3.]
\end{enumerate}
And the paragraph after.
The output looks like this:
Paragraph text here that says really cool stuff. Notice how the list after is
NOT PROPERLY INDENTED
___ 1. Thing 1
___ 2. Thing 2
___ 3. Thing 3
And the paragraph after.
I've dinked around a little with enumitem, but I have the same margin trouble. Can you tell me what I'm doing wrong?
