In the MWE below, if I comment out the use of enumitem everything works fine, but with it included it breaks. Is there a way to have this working?
\documentclass{beamer}
\usepackage{enumitem}
\begin{document}
\begin{frame}{title}
\begin{enumerate}[<+->]
\item How
\item are
\item you?
\end{enumerate}
\end{frame}
\end{document}
If I use the following code I get the error: Package enumitem Error: <+-> undefined.
\documentclass{article}\usepackage{beamerarticle}
\mode<article>{\usepackage{enumitem}}
\begin{document}
\begin{frame}{title}
\begin{enumerate}[<+->]
\item How
\item are
\item you?
\end{enumerate}
\end{frame}
\end{document}
enumiteminbeamer. Beamer already has its enumeration facilities, which are incompatible withenumitem's. – Phelype Oleinik Sep 07 '18 at 15:32enumitem? – samcarter_is_at_topanswers.xyz Sep 07 '18 at 15:34resume. – Geoff Sep 07 '18 at 15:49enumerateenvironment be present in your article and in your beamer version? – samcarter_is_at_topanswers.xyz Sep 07 '18 at 15:54\begin{enumerate}[<+->]than it would to start changing all the uses ofenumitem. That's why I posed the question the way I did. – Geoff Sep 07 '18 at 15:56\begin{enumerate}[<+->]are wrapped in frames a such\begin{frame}<presentation>so they play no role in the article mode (except to return errors). – Geoff Sep 07 '18 at 15:59