LyXDescritpion in a discription

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
multiholle
Posts: 3
Joined: Wed May 20, 2009 10:13 am

Descritpion in a discription

Post by multiholle »

How could I create a description that contains a nother description, like this:

Code: Select all

1. text
  a) more text
  b) more text
  c) more text
2. text
  a) more text
  b) more text
3. text 

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
Bozack
Posts: 117
Joined: Wed Feb 06, 2008 4:21 pm

Descritpion in a discription

Post by Bozack »

The code

Code: Select all

\begin{enumerate}
	\item text
		\begin{enumerate}
			\item more text
			\item more text
			\item more text
		\end{enumerate}
	\item text
		\begin{enumerate}
			\item more text
			\item more text
		\end{enumerate}
	\item text
\end{enumerate}
should do that. But here the letters in the inner list is of the form (a). To make it in the form a), use the code

Code: Select all

\renewcommand{\labelenumii}{\alph{enumii})}
OS, LaTeX-system, editor: Arch Linux 64bit, TeXlive, Kile | Windows 10 Professional 64bit, MikTeX 4.9, TeXnicCenter 2.02 64bit
Post Reply