>>>>> "Julián" == Julián Muñoz Domínguez <[EMAIL PROTECTED]> writes:
Julián> Hello tex specialists, I have looked the latex documentation
Julián> but doesn't find the answer:
Julián> Is it possible to change the separation between the lines of
Julián> the enumerate or itemize environment ? And the firt
Julián> separation above the first line ?
You have to change the lengths \itemsep and \topsep. This has to be
done at the beginning of the list by adding the following marked as
TeX:
\setlength{\itemsep}{1cm}
\setlength{\topsep}{0.5cm}
(or whatever length you want).
If you want to do it for *all* enumerate environments, add to your
preamble:
\let\oldenumerate=\enumerate
\renewcommand{\enumerate}{%
\oldenumerate%
\setlength{\itemsep}{1cm}%
\setlength{\topsep}{0.5cm}%
}
JMarc