Maybe it's my terrible lack of sleep but I can't get my head around enumitem's horizontal spacing parameters.
What I want is a description environment in which the first line of each item (where the item title is) is aligned to same left-margin as the the surrounding text and all lines below it are indented by the "normal" amount.
For example:
Some test
**Some Item** item description
continues here on indented line
**Another Item** item description
continues here on indented line
Can anyone show me how to get this result with enumitem's 5-10 spacing parameters (labelmargin, itemindent, labelsep, labelwidth, labelindent, ...)?
MWE:
\documentclass{article}
\usepackage{parskip} %to disable paragraph indentation but still keep paragraphs separated (with \parskip)
\setlength{\parskip}{2.75ex plus 0.5ex minus 0.2ex}
\usepackage{enumitem}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\begin{description}%[WHAT SHOULD I PUT HERE?]
\item Some Item: item description
continues here on indented line
when the description is long
\item Another Item: item description
continues here on indented line
when the description is long
\end{description}
\end{document}
With this code the "item titles" are slightly indented, which is what I don't want.





enumitem-problem, too! Thank! – Stephen Feb 12 '12 at 15:01