>>>>> "Ingo" == Ingo Kloecker <[EMAIL PROTECTED]> writes:
>> I'm wondering how to get rid of the blank lines in a enumerate
>> list. Using the enumerate environment a get something like:
>>
>> 1) First
>>
>> 2) Second
>>
>> 3) Third
>>
>> Thus, I would like to get:
>>
>> 1) First 2) Second 3) Third
>>
>> Any ideas?
Ingo> Append in TeX-Mode a \vspace{-1em} to each item except the last
Ingo> one, i.e. 1) First \vspace{-1em}
Ingo> 2) Second \vspace{-1em}
Ingo> 3) Third
Ingo> In LyX there will still be a blank line after each item. But the
Ingo> DVI-Preview shows the desired result.
I think you can also add \setlength{\itemsep}{0cm} at the beginning og
the enumeration. To make this change valid for all enumerations, add
to your LaTeX preamble [not tested]
\let\oldenumerate=\enumerate
\renewcommand{\enumerate}{\oldenumerate\setlength{\itemsep}{0cm}}
Hope this helps.
JMarc