
Estoy buscando a alguien que haya leído el extenso manual de Beamer.
Usando\maketitle
\begin{document}
\maketitle
\end{document}
versus usar\titlepage
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}
¿Cuál es la diferencia entre \maketitle
y \titlepage
en Beamer?
Respuesta1
en beamerbasetitle.sty
uno se encuentra
%
%
% The \maketitle command (for compatibility with other classes)
%
%
\def\maketitle{\ifbeamer@inframe\titlepage\else\frame{\titlepage}\fi}
y
\def\titlepage{\usebeamertemplate*{title page}\@thanks}
\maketitle
Básicamente, se trata \titlepage
de agregar un \frame
si es necesario, y se proporciona para compatibilidad.
Respuesta2
Sólo el segundo te permite \includeonlyframes{current}
conservar el título.
\begin{frame}[label=current]
\titlepage
\end{frame}