In my document I want to change the spacing of the enumerate environment, in order to do so, I renew the environment:
Code: Select all
\renewenvironment{enumerate}%
{\begin{list}{\arabic{enumi}.}%
{\setlength{\leftmargin}{2.5em}%
\setlength{\itemsep}{-\parsep}%
\setlength{\topsep}{-\parskip}%%
\usecounter{enumi}}%
}{\end{list}}
Code: Select all
\begin{enumerate} % Uses enumi
\item An item
\begin{enumerate} % Uses enumii
\item Etc.
% ..... Close tags and so on
Regards,
JJ