I'm using amsart. When I create an enumeration inside a theorem environment, the numbering is not aligned properly:
Theorem 14. (1)
(2)
(3)
(4)
How do I shift the (2),(3),... to be aligned with (1)?
MWE:
\documentclass{amsart}
\newtheorem{thm}{Theorem}[section]
\begin{document}
\begin{thm}
\begin{enumerate}
\item Item 1
\item Item 2
\item Item 3
\end{enumerate}
\end{thm}
\end{document}


\before\begin{enumerate}. It would align (1) with the other items. – Guido Sep 23 '12 at 09:43enumerate; leave asamsartdoes; add\mbox{}before theenumerate(similar to what Guido suggests). – egreg Sep 23 '12 at 09:52