If I compile the following:
\documentclass[]{article}
\usepackage{enumerate}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}[1.]
\item This is the first
\item This is the second
\end{enumerate}
\end{document}
I get the error message:
Package enumitem Error: 1. undefined.
But if I compile the following:
\documentclass[]{article}
\usepackage{enumerate}
% \usepackage{enumitem}
\begin{document}
\begin{enumerate}[1.]
\item This is the first
\item This is the second
\end{enumerate}
\end{document}
It works fine. What am I missing when I load enumitem?
