I am using the amsart document class and I want to design the title page myself.
My problem is that the absence of the \maketitle command seems to break some things.
\documentclass[12pt]{amsart}
\usepackage{geometry}
\usepackage{amsmath,amsthm}
\usepackage{enumerate}
\usepackage{color}
\usepackage{todonotes}
\usepackage{graphicx}
\usepackage{verbatim}
\usepackage{hyperref}
\usepackage{etoolbox}
\begin{document}
\title{MyTitle}
\author{MyAuthor}
\begin{titlepage}
My own title Page
\end{titlepage}
% \maketitle
\newpage
Rest of the document
\end{document}
My problem is that if there is no \maketitle, then the custom headers and footers of the amsart document class won't be displayed. Also, I am not sure if there is something else that is broken that I am currently missing.
Since this is my first post, I hope that I really have given a minimal working example. Feel free to suggest improvements in my post. Any help would be appreciated.
Edit: I have already checked the documentation of the \maketitle command in the amsart class but because of my limited knowledge this wasn't helpfull.

\maketitlefromamsartand redefine it to produce the style of title you want? – barbara beeton Aug 29 '23 at 16:07