My problem is that the items are not so small (hence not bullets) that they exceed left margin. See the example below.
\documentclass[a4paper,12pt]{report}
\begin{document}
\begin{itemize}
\item[ABCD] in the first item, ....
\item[KLMN] in some items like this one, there is so much text that it does not fit in a single line (but this is fine!!!)
\item[WXYZ] ...
\end{itemize}
\end{document}
I tried things like \setlength{\itemindent}{15pt}
but it does not look good since I obtain lines (after the item) not aligned.
I also tried description instead of itemize, but again I get unaligned text.
Thanks.


enumitem. – Peter Grill Oct 22 '11 at 21:21enumitemsolution. Others that come across this may not have an issue with usingenumitemso would still be useful info to have. – Peter Grill Oct 22 '11 at 21:27