\documentclass{article} \usepackage[inline]{enumitem} \begin{document} \begin{enumerate*}[label=\arabic)] \item ohai \item yes \end{enumerate*} \end{document}
I see the following error:
ERROR: Missing number, treated as zero. --- TeX said --- <to be read again> \c@) l.5 \item o hai
If I try the following code
\documentclass{article} \usepackage{enumitem} \begin{document} \begin{enumerate}}[label=\emph{\alph*})] \item ohai \item yes \end{enumerate} \end{document}
I see the following error:
ERROR: Missing number, treated as zero. --- TeX said --- <to be read again> \c@* l.4 \begin{enumerate}}[label=\emph{\alph*} )]
How can I fix the error? By the way, I installed texlive on manjaro linux.