LyXChange Enumerate Label

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
Willie
Posts: 42
Joined: Sat Aug 27, 2011 3:43 am

Change Enumerate Label

Post by Willie »

Hello. I would like to change the enumerate labels in LyX from numbers (1,2,etc.) to letters((a),(b),etc.) right from the beginning.

I know that once I put for example

Code: Select all

1. This is my first item 
Then if I put

Code: Select all

2.
and press alt+shift+right it exchanges the "2" into "a". However, I want the "a" to be the first level, and alt+shift+right doesn't work

thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
timd
Posts: 8
Joined: Tue Aug 12, 2008 7:45 pm

Change Enumerate Label

Post by timd »

Hi this should do it:

Code: Select all

\begin{enumerate}[(a)]
\item blah
\end{enumerate}
or for nested lists

Code: Select all

\begin{enumerate}[a)]
\item
 \begin{enumerate}[i.]
\item
\end{enumerate}
\end{enumerate}
Forgot to add

Code: Select all

\usepackage{enumerate}
this gives you the option of editing enumeration style.
Post Reply