Re: Change line space in a list

2000-10-23 Thread Chris Schulbert

 Is it an easy way to modify the line space in a list (enumerate or itemize
 enviroment) ?

 When using an enumerate enviroment  I obtain something like:

   1. Item one

   2. Item two

   3. Item three

 But I want  the lines be separated with single space, something like:

   1. Item one
   2. Item two
   3. Item three

try

1. \setlength{\parskip}{-3pt} Item one

in the first enumerate-line and in tex(red)



Hi!
This works for enumerate, but not for list-env. Is there a chance to do this
for list, too?

Chris




Re: Change line space in a list

2000-10-23 Thread Jean-Pierre.Chretien


From: "Chris Schulbert" [EMAIL PROTECTED]
To: "[EMAIL PROTECTED]" [EMAIL PROTECTED]
Subject: Re: Change line space in a list
Date: Mon, 23 Oct 2000 09:42:38 +0200
Importance: Normal

 Is it an easy way to modify the line space in a list (enumerate or itemize
 enviroment) ?

 When using an enumerate enviroment  I obtain something like:

   1. Item one

   2. Item two

   3. Item three

 But I want  the lines be separated with single space, something like:

   1. Item one
   2. Item two
   3. Item three

try

1. \setlength{\parskip}{-3pt} Item one

in the first enumerate-line and in tex(red)



Hi!
This works for enumerate, but not for list-env. Is there a chance to do this
for list, too?

Chris

This package (built from a answer in the french LaTeX FAQ) should do it:
\noitemsep  
shrinks spacing
\doitemsep
releases spacing
Very useful in slides.


-- 
Jean-Pierre


 debut macro 
%% 
%% Copyright (c) 1993 Hydro-Quebec [EMAIL PROTECTED]
%% 

%% Bring items closer together in list environments 
% Prevent infinite loops
\let\orig@Itemize =\itemize 
\let\orig@Enumerate =\enumerate
\let\orig@Description =\description
% Zero the vertical spacing parameters
\def\Nospacing{\itemsep=0pt\topsep=0pt\partopsep=0pt%
\parskip=0pt\parsep=0pt}
% Redefinition de art12.sty pour commencer a la marge de gauche
%\leftmargini 1.2em  % 2.5em

\def\noitemsep{
% Redefine the environments in terms of the original values
\renewenvironment{itemize}{\orig@Itemize\Nospacing}{\endlist}
\renewenvironment{enumerate}{\orig@Enumerate\Nospacing}{\endlist}
\renewenvironment{description}{\orig@Description\Nospacing}%
{\endlist}
}

\def\doitemsep{
% Redefine the environments to the original values
\renewenvironment{itemize}{\orig@Itemize}{\endlist}
\renewenvironment{enumerate}{\orig@Enumerate}{\endlist}
\renewenvironment{description}{\orig@Description}{\endlist}
}
 fin macro 



Re: Change line space in a list

2000-10-23 Thread Jean-Pierre.Chretien


[snip]
Hi!
This works for enumerate, but not for list-env. Is there a chance to do this
for list, too?

Chris

This package (built from a answer in the french LaTeX FAQ) should do it:
\noitemsep  
shrinks spacing
\doitemsep
releases spacing
Very useful in slides.

I should have checked better, seems that itemsep.sty knows only about
itemize, description and enumerate.
Perhaps it is easy to hack it for a general list env.
Sorry if I mislead you

-- 
Jean-Pierre




Re[2]: Change line space in a list

2000-10-23 Thread Guenter Milde

On Mon, 23 Oct 2000 16:08:36 +0200 Chris Schulbert [EMAIL PROTECTED] wrote:

 [snip]
 Hi!
 This works for enumerate, but not for list-env. Is there a chance to do
 this
 for list, too?

 I can't believe it! Is there really no way to do this with a single line of
 TeX-Code? Why the hell is it so different to finetune a list-env, when
 enumerate behaves so easy?

Why don't you do it in LyX? Mark your List, go to Layout|Absatzformat and
under Vertikale Abstände (über or unter) choose "Länge" and give a value in
the field beneath (like -2ex, say)

LyX does not recognize the minus and puts extra space in the screen output
but in the dvi-file its correct.

Guenter


--
[EMAIL PROTECTED]






Re: Change line space in a list

2000-10-23 Thread Chris Schulbert

 Is it an easy way to modify the line space in a list (enumerate or itemize
 enviroment) ?

 When using an enumerate enviroment  I obtain something like:

   1. Item one

   2. Item two

   3. Item three

 But I want  the lines be separated with single space, something like:

   1. Item one
   2. Item two
   3. Item three

try

1. \setlength{\parskip}{-3pt} Item one

in the first enumerate-line and in tex(red)



Hi!
This works for enumerate, but not for list-env. Is there a chance to do this
for list, too?

Chris




Re: Change line space in a list

2000-10-23 Thread Jean-Pierre.Chretien


From: "Chris Schulbert" [EMAIL PROTECTED]
To: "[EMAIL PROTECTED]" [EMAIL PROTECTED]
Subject: Re: Change line space in a list
Date: Mon, 23 Oct 2000 09:42:38 +0200
Importance: Normal

 Is it an easy way to modify the line space in a list (enumerate or itemize
 enviroment) ?

 When using an enumerate enviroment  I obtain something like:

   1. Item one

   2. Item two

   3. Item three

 But I want  the lines be separated with single space, something like:

   1. Item one
   2. Item two
   3. Item three

try

1. \setlength{\parskip}{-3pt} Item one

in the first enumerate-line and in tex(red)



Hi!
This works for enumerate, but not for list-env. Is there a chance to do this
for list, too?

Chris

This package (built from a answer in the french LaTeX FAQ) should do it:
\noitemsep  
shrinks spacing
\doitemsep
releases spacing
Very useful in slides.


-- 
Jean-Pierre


 debut macro 
%% 
%% Copyright (c) 1993 Hydro-Quebec [EMAIL PROTECTED]
%% 

%% Bring items closer together in list environments 
% Prevent infinite loops
\let\orig@Itemize =\itemize 
\let\orig@Enumerate =\enumerate
\let\orig@Description =\description
% Zero the vertical spacing parameters
\def\Nospacing{\itemsep=0pt\topsep=0pt\partopsep=0pt%
\parskip=0pt\parsep=0pt}
% Redefinition de art12.sty pour commencer a la marge de gauche
%\leftmargini 1.2em  % 2.5em

\def\noitemsep{
% Redefine the environments in terms of the original values
\renewenvironment{itemize}{\orig@Itemize\Nospacing}{\endlist}
\renewenvironment{enumerate}{\orig@Enumerate\Nospacing}{\endlist}
\renewenvironment{description}{\orig@Description\Nospacing}%
{\endlist}
}

\def\doitemsep{
% Redefine the environments to the original values
\renewenvironment{itemize}{\orig@Itemize}{\endlist}
\renewenvironment{enumerate}{\orig@Enumerate}{\endlist}
\renewenvironment{description}{\orig@Description}{\endlist}
}
 fin macro 



Re: Change line space in a list

2000-10-23 Thread Jean-Pierre.Chretien


[snip]
Hi!
This works for enumerate, but not for list-env. Is there a chance to do this
for list, too?

Chris

This package (built from a answer in the french LaTeX FAQ) should do it:
\noitemsep  
shrinks spacing
\doitemsep
releases spacing
Very useful in slides.

I should have checked better, seems that itemsep.sty knows only about
itemize, description and enumerate.
Perhaps it is easy to hack it for a general list env.
Sorry if I mislead you

-- 
Jean-Pierre




Re[2]: Change line space in a list

2000-10-23 Thread Guenter Milde

On Mon, 23 Oct 2000 16:08:36 +0200 Chris Schulbert [EMAIL PROTECTED] wrote:

 [snip]
 Hi!
 This works for enumerate, but not for list-env. Is there a chance to do
 this
 for list, too?

 I can't believe it! Is there really no way to do this with a single line of
 TeX-Code? Why the hell is it so different to finetune a list-env, when
 enumerate behaves so easy?

Why don't you do it in LyX? Mark your List, go to Layout|Absatzformat and
under Vertikale Abstände (über or unter) choose "Länge" and give a value in
the field beneath (like -2ex, say)

LyX does not recognize the minus and puts extra space in the screen output
but in the dvi-file its correct.

Guenter


--
[EMAIL PROTECTED]






Re: Change line space in a list

2000-10-23 Thread Chris Schulbert

> Is it an easy way to modify the line space in a list (enumerate or itemize
> enviroment) ?
>
> When using an enumerate enviroment  I obtain something like:
>
>   1. Item one
>
>   2. Item two
>
>   3. Item three
>
> But I want  the lines be separated with single space, something like:
>
>   1. Item one
>   2. Item two
>   3. Item three

try

1. \setlength{\parskip}{-3pt} Item one

in the first enumerate-line and in tex(red)



Hi!
This works for enumerate, but not for list-env. Is there a chance to do this
for list, too?

Chris




Re: Change line space in a list

2000-10-23 Thread Jean-Pierre.Chretien


>>From: "Chris Schulbert" <[EMAIL PROTECTED]>
>>To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
>>Subject: Re: Change line space in a list
>>Date: Mon, 23 Oct 2000 09:42:38 +0200
>>Importance: Normal
>>
>>> Is it an easy way to modify the line space in a list (enumerate or itemize
>>> enviroment) ?
>>>
>>> When using an enumerate enviroment  I obtain something like:
>>>
>>>   1. Item one
>>>
>>>   2. Item two
>>>
>>>   3. Item three
>>>
>>> But I want  the lines be separated with single space, something like:
>>>
>>>   1. Item one
>>>   2. Item two
>>>   3. Item three
>>
>>try
>>
>>1. \setlength{\parskip}{-3pt} Item one
>>
>>in the first enumerate-line and in tex(red)
>>
>>
>>
>>Hi!
>>This works for enumerate, but not for list-env. Is there a chance to do this
>>for list, too?
>>
>>Chris
>>
This package (built from a answer in the french LaTeX FAQ) should do it:
\noitemsep  
shrinks spacing
\doitemsep
releases spacing
Very useful in slides.


-- 
Jean-Pierre


 debut macro 
%% 
%% Copyright (c) 1993 Hydro-Quebec [EMAIL PROTECTED]
%% 

%% Bring items closer together in list environments 
% Prevent infinite loops
\let\orig@Itemize =\itemize 
\let\orig@Enumerate =\enumerate
\let\orig@Description =\description
% Zero the vertical spacing parameters
\def\Nospacing{\itemsep=0pt\topsep=0pt\partopsep=0pt%
\parskip=0pt\parsep=0pt}
% Redefinition de art12.sty pour commencer a la marge de gauche
%\leftmargini 1.2em  % 2.5em

\def\noitemsep{
% Redefine the environments in terms of the original values
\renewenvironment{itemize}{\orig@Itemize\Nospacing}{\endlist}
\renewenvironment{enumerate}{\orig@Enumerate\Nospacing}{\endlist}
\renewenvironment{description}{\orig@Description\Nospacing}%
{\endlist}
}

\def\doitemsep{
% Redefine the environments to the original values
\renewenvironment{itemize}{\orig@Itemize}{\endlist}
\renewenvironment{enumerate}{\orig@Enumerate}{\endlist}
\renewenvironment{description}{\orig@Description}{\endlist}
}
 fin macro 



Re: Change line space in a list

2000-10-23 Thread Jean-Pierre.Chretien


[snip]
Hi!
This works for enumerate, but not for list-env. Is there a chance to do this
for list, too?

Chris

>>This package (built from a answer in the french LaTeX FAQ) should do it:
>>\noitemsep  
>>shrinks spacing
>>\doitemsep
>>releases spacing
>>Very useful in slides.

I should have checked better, seems that itemsep.sty knows only about
itemize, description and enumerate.
Perhaps it is easy to hack it for a general list env.
Sorry if I mislead you

-- 
Jean-Pierre




Re[2]: Change line space in a list

2000-10-23 Thread Guenter Milde

On Mon, 23 Oct 2000 16:08:36 +0200 Chris Schulbert <[EMAIL PROTECTED]> wrote:

> [snip]
> Hi!
> This works for enumerate, but not for list-env. Is there a chance to do
> this
> for list, too?

> I can't believe it! Is there really no way to do this with a single line of
> TeX-Code? Why the hell is it so different to finetune a list-env, when
> enumerate behaves so easy?

Why don't you do it in LyX? Mark your List, go to Layout|Absatzformat and
under Vertikale Abstände (über or unter) choose "Länge" and give a value in
the field beneath (like -2ex, say)

LyX does not recognize the minus and puts extra space in the screen output
but in the dvi-file its correct.

Guenter


--
[EMAIL PROTECTED]






Change line space in a list

2000-10-20 Thread Ramón Flores d'as Seixas

Hello:

Is it an easy way to modify the line space in a list (enumerate or itemize
enviroment) ?

When using an enumerate enviroment  I obtain something like:

  1. Item one

  2. Item two

  3. Item three


But I want  the lines be separated with single space, something like:

  1. Item one
  2. Item two
  3. Item three


Thanks




Re: Change line space in a list

2000-10-20 Thread Herbert Voss

"Ramón Flores d'as Seixas" wrote:
 
 Hello:
 
 Is it an easy way to modify the line space in a list (enumerate or itemize
 enviroment) ?
 
 When using an enumerate enviroment  I obtain something like:
 
   1. Item one
 
   2. Item two
 
   3. Item three
 
 But I want  the lines be separated with single space, something like:
 
   1. Item one
   2. Item two
   3. Item three

try 

1. \setlength{\parskip}{-3pt} Item one

in the first enumerate-line and in tex(red)



Herbert

-- 
[EMAIL PROTECTED]
http://perce.de/lyx/



Change line space in a list

2000-10-20 Thread Ramón Flores d'as Seixas

Hello:

Is it an easy way to modify the line space in a list (enumerate or itemize
enviroment) ?

When using an enumerate enviroment  I obtain something like:

  1. Item one

  2. Item two

  3. Item three


But I want  the lines be separated with single space, something like:

  1. Item one
  2. Item two
  3. Item three


Thanks




Re: Change line space in a list

2000-10-20 Thread Herbert Voss

"Ramón Flores d'as Seixas" wrote:
 
 Hello:
 
 Is it an easy way to modify the line space in a list (enumerate or itemize
 enviroment) ?
 
 When using an enumerate enviroment  I obtain something like:
 
   1. Item one
 
   2. Item two
 
   3. Item three
 
 But I want  the lines be separated with single space, something like:
 
   1. Item one
   2. Item two
   3. Item three

try 

1. \setlength{\parskip}{-3pt} Item one

in the first enumerate-line and in tex(red)



Herbert

-- 
[EMAIL PROTECTED]
http://perce.de/lyx/



Change line space in a list

2000-10-20 Thread Ramón Flores d'as Seixas

Hello:

Is it an easy way to modify the line space in a list (enumerate or itemize
enviroment) ?

When using an enumerate enviroment  I obtain something like:

  1. Item one

  2. Item two

  3. Item three


But I want  the lines be separated with single space, something like:

  1. Item one
  2. Item two
  3. Item three


Thanks




Re: Change line space in a list

2000-10-20 Thread Herbert Voss

"Ramón Flores d'as Seixas" wrote:
> 
> Hello:
> 
> Is it an easy way to modify the line space in a list (enumerate or itemize
> enviroment) ?
> 
> When using an enumerate enviroment  I obtain something like:
> 
>   1. Item one
> 
>   2. Item two
> 
>   3. Item three
> 
> But I want  the lines be separated with single space, something like:
> 
>   1. Item one
>   2. Item two
>   3. Item three

try 

1. \setlength{\parskip}{-3pt} Item one

in the first enumerate-line and in tex(red)



Herbert

-- 
[EMAIL PROTECTED]
http://perce.de/lyx/