LyX ⇒ Problem with enumeration
-
monemonemone
- Posts: 2
- Joined: Sun May 09, 2010 12:50 pm
Problem with enumeration
i want to create an enumeration, looking like this
1. xxx
1.1 xxx
2. xxxx
2.1 xxxx
2.2 xx
-> that means an enumeration only consisting of numbers.
but when i create an enumeration with lyx, enumerations have letters in the second level. they look like this
1. xxx
a) xxx
b) xxx
i. xx
how can i avoid letters and put in numbers instead?
thank you VERY MUCH for your help!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Problem with enumeration
use some of the features of the enumitem package:
Code: Select all
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}
\item First item
\begin{enumerate}[label*=\arabic*]
\item First sub item
\end{enumerate}
\end{enumerate}
\end{document}-
monemonemone
- Posts: 2
- Joined: Sun May 09, 2010 12:50 pm
Re: Problem with enumeration
but i have no idea what to do next.
how can I add this enumitem package to lyx?
thanks again!
Problem with enumeration
No idea; I've never used LyX. Perhaps a LyX user can help you here.monemonemone wrote:...
how can I add this enumitem package to lyx?..
Problem with enumeration
Code: Select all
\usepackage{enumitem}
\setenumerate[2]{label*=\arabic*}