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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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