I want to add a sentence in the middle of an enumerate that isn't part of the enumeration. I would like to do this without the need to add any new packages (or at least any non standard ones, since I am trying to make a very easily portable template for others to use).
This is how you do these problems:
1. stuff and stuff
2. more stuff and stuff
This is how you do these other problems:
3. even more stuff and stuff
4. foo and bar and stuff
I had done this originally by using different enumerate environments, but I would now like the numbering to continue from one "group" to the next.
This is how you do these problems:
\begin{enumerate}
\item stuff and stuff
\item more stuff and stuff
\end{enumerate}
This is how you do these other problems:
\begin{enumerate}[resume]
\item even more stuff and stuff
\item foo and bar and stuff
\end{enumerate}
\documentclass{report}
\begin{document}
This is how you do these problems:
\begin{enumerate}
\item stuff and stuff
\item more stuff and stuff
\end{enumerate}
This is how you do these other problems:
\begin{enumerate}
\setcounter{enumi}{2}
\item even more stuff and stuff
\item foo and bar and stuff
\end{enumerate}
\end{document}
dmt wrote:...Is the enumitem package standard enough that I can assume most people have it (for example, those that only have some default latex installation)?
enumitem is not included in the Basic MiKTeX 2.7 installation, for example.