[Tex/LaTex] the difference between \maketitle and \titlepage in Beamer

beamertitles

I am looking for someone who has read the lengthy Beamer manual.

Using \maketitle

\begin{document}
\maketitle
\end{document}

versus using \titlepage

\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}

What is the difference between \maketitle and \titlepage in Beamer?

Best Answer

In beamerbasetitle.sty one finds

%
%
% The \maketitle command (for compatibility with other classes)
%
%
\def\maketitle{\ifbeamer@inframe\titlepage\else\frame{\titlepage}\fi}

and

\def\titlepage{\usebeamertemplate*{title page}\@thanks}

so \maketitle is basically \titlepage but adding a \frame if necessary, and it is provided for compatibility.