zero


Latex: Start enumerate list with value zero (0) with no additional plugins

\begin{enumerate}
	\setcounter{enumi}{-1}
	\item Item 0
	\item Item 1
\end{enumerate}

The above snippet is a solution we used to start an enumeration list in Latex from the number zero (0). We wanted to avoid adding new packages and the above solution worked out for us.