I use this in my personal .sty file to change the standard enumerate scheme (when I do homework it better matches the numbering scheme in texts/MSWord):
\usepackage{enumerate}
% Change enumerate numbering scheme
\renewcommand{\theenumi}{(\alph{enumi})}
\renewcommand{\labelenumi}{\theenumi}
\renewcommand{\theenumii}{{(}\roman{enumii}{)}}
\renewcommand{\labelenumii}{\theenumii}
But the other day I created a beamer presentation (that didn't call the enumerate package) and I keep getting these errors:
/etc/texmf/tex/latex/herron.sty|7 error| \labelenumi undefined.
/etc/texmf/tex/latex/herron.sty|9 error| \labelenumii undefined.
It compiles just fine and I have no complaints with the .pdf it generates, but I would like to understand why this happens (and make the error go away, mainly because I'm using Vim anf vimlatexsuite and it's a bit of pain to deal with the panes that split out).
Thanks!
