* Herbert Voss <[EMAIL PROTECTED]> [2001-08-14 17:04] schrieb:
> Ronny Buchmann wrote:
> >
> > is there a way to change to indention in enumerate environments?
> >
> > if i redefine the labels with \renewcommand\labelenumi{\arabic{enumi}. Tag} they
>are way outside the left margin
> >
> > i know there are solutions not using lyx (or latex standard) enumerate (e.g.
>Eenumerate), but it is it possible with lyx' enumerate?
>
> the problem is, that the makelabel is in every enum-environment new
> defined.
> write in preamble:
>
> \renewcommand\enumerate{%
> \ifnum \@enumdepth >\thr@@\@toodeep\else
> \advance\@enumdepth\@ne
> \edef\@enumctr{enum\romannumeral\the\@enumdepth}%
> \expandafter
> \list
> \csname label\@enumctr\endcsname
> {\usecounter\@enumctr\def\makelabel##1{\hspace\labelsep ##1
> Tag}}%
> \fi}
>
thanks, worked (what we do without you, herbert?)
but since i dont want it for all enumerations i did \newcommand\daylist{.... in
preamble
and then in the text:
\let\oldenum\enumerate
\renewcommand\enumerate{\daylist}
the lyx enumeration
\renewcommand\enumerate{\oldenum}
> Herbert
>
>
--