Stacia Hartleben wrote:
This is a real newbie question, but I couldn't seem to find it
anywhere. How do I change enumerate so that for one part of the
document it displays something like a, b, c...instead of 1,2,3?
Hi,
You can change the numbering in enumerate environement by adding
commands in the peramble like
\renewcommand{\labelenumi}{\alph{enumi}}
\renewcommand{\labelenumii}{\roman{enumii}}
this will give a,b,c for the first level in enumerate environement and
i,ii,iii.... in the second level. similarly
\renewcommand{\labelenumi}{\#\Alph{enumi}\#}
\renewcommand{\labelenumii}{\Alph{enumi}.\arabic{enumii}}
will produce A,B,C.. in first and A.i,A.ii,A.iii.... in the second level
if its nested after A or Bi,Bii,B.iii if its after B
you can read more about this in the Extended feature document in the lyx
in section 7.4
regards
kamran