[Tex/LaTex] How to customize \titlepage in beamer

beamertitles

I'm trying build my own theme to use for work-related presentations in beamer. I'm not so familiar with how to write the themes, I'm customizing a title page manually at the moment.

What I want to do is have fine control over where text goes on the page when the \titlepage command is issued. I want to shift it rightwards and downwards from where beamer is choosing to put it.

Best Answer

You could use \defbeamertemplate to define your own title page template. There you may use the commands \inserttitle, \insertauthor, \insertdate etc. to insert those values, also don't forget to use the predefined font and color values.

Here is a compilable example. Of course you can use \centering, \vfill, beamercolorbox etc. but I keep it simple for the purpose of demonstration.

\documentclass{beamer}
\defbeamertemplate*{title page}{customized}[1][]
{
  \usebeamerfont{title}\inserttitle\par
  \usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par
  \bigskip
  \usebeamerfont{author}\insertauthor\par
  \usebeamerfont{institute}\insertinstitute\par
  \usebeamerfont{date}\insertdate\par
  \usebeamercolor[fg]{titlegraphic}\inserttitlegraphic
}
\title{A customized title page}
\subtitle{for demonstration}
\author{Stefan Kottwitz}
\date{\today}
\begin{document}
\maketitle
\end{document}

customized title page