[Tex/LaTex] Deleting blank page after title page

amsbookblank-page

Using amsbook, I get a blank white page after the title page and before the TOC. Any way to delete this page? Many thanks.

Here is a MWE, for what it's worth:

 \documentclass[openany]{amsbook}

 \begin{document}

 \title{Title}

 \author{Author}

 \maketitle

 \tableofcontents

 \chapter{Start}

 \end{document}

Best Answer

For a short (single page) table of contents is enough a minipage, but indeed egreg solution is better.

\documentclass[openany]{amsbook}
\title{Title}
\author{Author}
\begin{document}
\maketitle
\begin{minipage}{\textwidth}
\vfill
\tableofcontents
\end{minipage}
\chapter{Start}
\end{document}
Related Question