1

I'm trying to continue an enumeration, so I'm initializing the environment as:

\begin{enumerate}[start = 27]
\item X 
\item Y
\item Z
\end{enumerate}

For which I get a big red error... Funnily, it works just fine if I change the "start" counter to 24, which means it only cracks if the counter passes 27.

Even more weirdly, I use the same thing some hundreds lines of code above, and it works just fine.

I've been troubleshooting this for 2 hours already and I can't possible imagine what's wrong with it... Any ideas?

1 Answers1

1

Thanks all!

It was an issue with an environment and the counter was changed to letters, therefore it crashed for > 26.

It was solved quite easily by changing the

\begin{enumerate}

to

\begin{enumerate}[label = \arabic*.]