I am using \startdesc{} to create a label and description environment, e.g.:
\startdesc{(label)}
This is some text in a sentence.
\stopdesc
\startdesc{(another label)}
This is some more text in another sentence.
\stopdesc
Unfortunately, this results in labels which are of different length and the sentences begin at a different starting distance relative to the left margin.
(label) This is some text in
a sentence.
(another label) This is some
more text in another sent-
ence.
How can I set the width of all of the labels to a fixed width, to the width which would be appropriate for the string WWWWWWWW, which never actually appears in the document?
(WWWWWWWW) This is some text
in the first sentence.
(label) This is some text
in a sentence.
(another labTlis is some
more text in another sent-
ence.
\definedescription[desc][width=3cm,…], this is however not related to the longest label. – Marco Apr 15 '12 at 12:04