[Tex/LaTex] amsart maketitle problem

amsarttitles

I am editing a paper using amsart documentclass. However, the

\maketitle

command does not give me the author and abstract. My codes are here:

\documentclass[12pt]{amsart}
\usepackage{amsmath,amsfonts,amssymb,amsthm,latexsym}
\usepackage{enumerate}
\usepackage{cancel}
\usepackage{color}
\usepackage{todonotes}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{titling}
\usepackage{verbatim}

\begin{document}
\title{MyTitle}
\author{MyAuthor}
\begin{abstract}
MyAbstract
\end{abstract}

\maketitle
Text
\end{document}

And the resulting file only have "MyTitle" as title and "Text" as text. Author and abstract information are missing.

How can I add adstract and authors by using maketitle?

Best Answer

While I still can't pinpoint the source of the problem, removing the titling package resolves the issue. It appears to be a package clash, but with what—I do not know yet.