I have looked into the documentation of enumitem but couldn't figure out how to handle this.
I just want a list that aligns the item names to a standard indent from the left and then aligns the item texts according to the longest item name. Isn’t this the natural way you would put a list in typesetting?
But enumitem does something else wihtout configuration: It aligns the item’s text to a standard indent and then puts the name left from it, so that long item names produce overfull boxes to the left.
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}
\item[QuiteLongItemName] Item text...
\item[OtherItem]
\end{enumerate}
\end{document}
How do you change this?