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)"
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: 9201
- 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[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
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: 9201
- 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[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1