Hi,
I'm new with LaTeX. I'm using LyX, and I would like to change the enumeration style. At the moment, the enumeration style is :
1. ABC
2. DEF
3. GHI
...
And I would like it to be :
i. ABC
ii. DEF
iii. GHI
...
Is there an easy way to fix it ?
Thanks!
Joey
Text Formatting ⇒ Alter Enumerate Style from "1." to "i." or "(i)"
NEW: TikZ book now 40% off at Amazon.com for a short time.

Alter Enumerate Style from "1." to "i." or "(i)"
http://www.latex-community.org/forum/vi ... f=4&t=9632
=>
Putin the preamble.
=>
Put
Code: Select all
\renewcommand{\theenumi}{\roman{enumi}}
OS: Win 7 64-bit LaTeX: MikTeX 2.9 64-bit Editor: TXC 1 RC1
Alter Enumerate Style from "1." to "i." or "(i)"
Or you could use
to change for that list only
Code: Select all
\begin{enumerate[(i.)]
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Alter Enumerate Style from "1." to "i." or "(i)"
Since the default enumerate environment does not accept any optional arguments, this won't work.timd wrote:Or you could useto change for that list onlyCode: Select all
\begin{enumerate[(i.)]
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Alter Enumerate Style from "1." to "i." or "(i)"
Sorry localghost you are very right, i've been using it so long I forgot to add the proviso:
then you have the option of setting the enumeration style quite easily for individual lists.
sorry again
Code: Select all
\usepackage{enumerate}
sorry again
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Alter Enumerate Style from "1." to "i." or "(i)"
This package is superseded by the enumitem package with more capabilities but different syntax.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10