Hi all,
I am trying to type up my solutions to my coursework, but the question is broken down into several sections.
The question has two parts; part (a), and part (b).
But part (b) is broken down further into 4 smaller parts; (i), (ii), (iii) and (iv).
I have successfully used the enumerate facility with a preamble to achieve the correct layout for parts (a) and (b). But how can I break down part (b) further into a "sub-enviroment" for the four lower case roman numerals.
Many thanks.
Text Formatting ⇒ Enumerations within enumerations.
Enumerations within enumerations.
Last edited by srengam on Wed Jul 13, 2011 12:37 am, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

Enumerations within enumerations.
Please check whether the following code works for you :
Regards.
Code: Select all
\documentclass[11pt]{article}
%
\usepackage{enumerate}
\begin{document}
\begin{enumerate}[(a)]
\item First question.
\item Second question :
\begin{enumerate}[(i)]
\item Sub query 1.
\item Sub query 2.
\item Sub query 3.
\item Sub query 4.
\end{enumerate}
\end{enumerate}
\end{document}
OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim
Re: Enumerations within enumerations.
Worked perfectly,
many thanks.
many thanks.