Can we use \enumerate with \standalone class? Isn't enumerate basic LaTeX?
The minimal example, which does not compile with standalone but it does with article, is:
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{enumerate}
\item test
\end{enumerate}
\end{document}

