When having a list like:
\documentclass[twoside]{book}
\RequirePackage{enumitem}
\begin{document}
\begin{enumerate}[label=\alph*,start=25]
\item an item
\item an item
\item an item
\item an item
\item an item
\item an item
\item an item
\item an item
\end{enumerate}
\end{document}
we get the error:
! LaTeX Error: Counter too large.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.23 \item a
n item
due to the fact that the counter exceeds 26.
When having e.g. HTML the numbering would be like: y, z, aa, ab, ac, ad or at least wrap around back to a?
Does something like this exist in LaTeX as well?
