Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:
| >>>>> "Gerhard" == Gerhard Schuck <[EMAIL PROTECTED]> writes:
|
| Gerhard> If the actual width of the label is longer
| Gerhard> than the default width, the label should extend into the
| Gerhard> first line (user guide). But it doesn't. The part of the
| Gerhard> label which exceeds the default width is printed over the
| Gerhard> beginning of the following text. With other words: The text
| Gerhard> doesn't move with the label, thus they are overlapping.
|
| This is a consequence of the following change
|
| --- ../lib/layouts/stdlists.inc 1999/09/27 18:44:34 1.1
| +++ ../lib/layouts/stdlists.inc 2000/02/29 02:19:14 1.2
| @@ -88,7 +88,7 @@
| {\settowidth{\labelwidth}{#1}
| \setlength{\leftmargin}{\labelwidth}
| \addtolength{\leftmargin}{\labelsep}
| - \renewcommand{\makelabel}[1]{##1 \hfill}}}
| + \renewcommand{\makelabel}[1]{\makebox[\labelwidth][l]{##1}}}}
| {\end{list}}
| EndPreamble
|
|
| Lars, unless you have a bright idea, I think this should be
| reverted.
The problem is the \hfill which makes alignment of the lable highly
unpredictable.
And why doesn't my \makebox work?
Hmm, what happens if we just use:
\renewcommand{\makelabel}[1]{##1}
Lgb