Re: numbered list: space between rows

2006-05-19 Thread Juergen Spitzmueller
Paul A. Rubin wrote:
> You can do it list-by-list in the document body, or you can define a new
> environment in the preamble and then use ERT to start/end the
> environment (and to flag items).  I'm attaching a sample document.

A much simpler solution, which works generally, is to put this in the preamble 
(provided you have the enumitem package installed):

\usepackage{enumitem}
\setenumerate{parsep=0pt,itemsep=0pt,partopsep=0pt}

Read the enumtiem documentation for more possibilities.

Jürgen


Re: numbered list: space between rows

2006-05-19 Thread Paul A. Rubin

Theo wrote:

thanx paul,

i found this example. 


http://tug.org/TeXnik/list/intro.pdf

but do i have to write it in the preamble or does the whole block come inside
the ERT (aka TeX-button)?



You can do it list-by-list in the document body, or you can define a new 
environment in the preamble and then use ERT to start/end the 
environment (and to flag items).  I'm attaching a sample document.


/Paul


spacing.lyx
Description: application/lyx


Re: numbered list: space between rows

2006-05-19 Thread Theo
thanx paul,

i found this example. 

http://tug.org/TeXnik/list/intro.pdf

but do i have to write it in the preamble or does the whole block come inside
the ERT (aka TeX-button)?

cheers,
theo




Re: numbered list: space between rows

2006-05-18 Thread Paul A. Rubin

Theo wrote:

Hi,

i have a numbered list in a article document. the space between the list
elements looks way to high.

it's like this:

1. a

2. b

3. c

and i would like to have it like this:

1. a
2. b
3. c

is there a way in the menu to fix this?



It involves some ERT: http://tug.org/TeXnik/mainFAQ.cgi?file=list/intro.

/Paul