I'm trying to write an exam paper using LaTeX. I use the enumerate package, e.g.
\begin{enumerate}
\item This question is about balloons.
\begin{enumerate}
\item What shape are balloons?
\item What colour are balloons?
\end{enumerate}
\end{enumerate}
The problem comes from when I want to put commentary into the question. At the moment, the first level of enumerate gives me a number, and the second a letter. But in between the letters, I might like to say something about the next part of the question, and I would like that outdented, i.e. not on the same level as the lettered parts of the question. I have a work around:
\begin{enumerate}
\item This question is about balloons.
\begin{enumerate}[(a)]
\item What shape are balloons?
\end{enumerate}
Assume that all balloons are the same shape.
\begin{enumerate}[(b)]
\item What colour are balloons?
\end{enumerate}
\end{enumerate}
This is a real pain in the you-know-what. Doing it this way, everything in the last enumerate environment gets labelled as (b). So I have to \begin{enumerate} and \end{enumerate} and label every subsequent part:
\begin{enumerate}
\item This question is about balloons.
\begin{enumerate}[(a)]
\item What shape are balloons?
\end{enumerate}
Assume that all balloons are the same shape.
\begin{enumerate}[(b)]
\item What colour are balloons?
\end{enumerate}
\begin{enumerate}[(c)]
\item Why do I have to keep doing this?
\end{enumerate}
\begin{enumerate}[(d)]
\item Why do I have to keep doing this?
\end{enumerate}
\end{enumerate}

enumitempackage, instead, and itsresumefeature. – egreg Jun 25 '13 at 16:39enumitemis included in both MikTeX and TeX Live, so you may have it already. If not, which TeX distribution do you have? – Torbjørn T. Jun 25 '13 at 16:45usepackage{enumitem}and it opened a Package Installation window. I've downloaded the style file, but I'm not sure how to install it. (I have folders called MikTeX, so I assume I have MikTeX) – Fly by Night Jun 25 '13 at 16:54enumerateis quite old and you should probably useenumitembut you can useenumeratebut you are misusing it\begin{enumerate}[(b)]should be\begin{enumerate}[(a)]\setcounter{enumii}{2}Onlyais a special value to set the counter format you can not usebto set the start value. – David Carlisle Jun 25 '13 at 16:58\usepackage{enumitem}, and the installation happens automatically. – Torbjørn T. Jun 25 '13 at 17:04enumitem. Thanks a lot for your help!! – Fly by Night Jun 25 '13 at 17:15enumitem. I first learned to use LaTeX in 2002, and have stuck to what I was taught ever since. I'm quite fluent at type setting, but a total novice when it comes to anything else. – Fly by Night Jun 25 '13 at 17:16.clsfile. I changed the document class of a working file to{exam}and tried to compile. I got a package install window pop-up. I asked it to install via the web like I had when I gotenumitem.stybut that didn't work. I've downloadedexam.clsbut don't know how it install it. – Fly by Night Jun 25 '13 at 19:00.clsfiles are, and place it there. After that you have to update thefile name database. How that is done depends on the editor, but you should be able to easily find it online. – Mythio Jun 25 '13 at 19:06.clsfile on windows 8 with texniccenter. That will probably get you the help you need :-) – Mythio Jun 25 '13 at 19:52