[Tex/LaTex] How to make an enumerate list start at something other than 1

#enumeratelistsnumbering

Sometimes, I want to have enumerate lists in LaTeX start at other than the first value (1, a, i, etc.) How can I make an enumerate list start at an arbitrary value?

Best Answer

You can change the counter named enumi, like this:

\begin{enumerate}
  \setcounter{enumi}{4}
  \item fifth element
\end{enumerate}

(If you have lists at deeper levels of nesting, the relevant counters are enumii, enumiii and enumiv.)