Text Formatting ⇒ Alter Enumerate Style from "1." to "i." or "(i)"
Alter Enumerate Style from "1." to "i." or "(i)"
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
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
Alter Enumerate Style from "1." to "i." or "(i)"
=>
Put
Code: Select all
\renewcommand{\theenumi}{\roman{enumi}}
Alter Enumerate Style from "1." to "i." or "(i)"
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.)]
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Alter Enumerate Style from "1." to "i." or "(i)"
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)"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10