Putting a subtitle on a Beamer document

beamerpositioningtitles

I want to put the subtitle "Tesis sometida para obtar por al grado de Maestría Académica en Matemática" below and to not be colored in orange. Like for example, just above my name.

enter image description here


Here is my code:

\title[Representaciones de grupos de simetría]%

{\textbf{Las representaciones metapléctica y de espín\\
de ciertos grupos de simetría:\\
un estudio comparativo}}
 
\subtitle[Tesis]{\footnotesize {\emph{Tesis sometida para obtar por al grado de Maestría Académica en Matemática}}}

\author[Adrián J. Naranjo A.]{Adrián José Naranjo Alvarado}

\institute[]{\small Escuela de Matemática,
                    Universidad de Costa Rica}

\date{10 de septiembre del 2021} 

Any help would me greatly appreciated.

Best Answer

As I do not know the theme etc., and I am only guessing the values, the solution should be a bit modified. It is based on the answer to Title in box in Beamer presentation

\documentclass{beamer}
\usetheme{AnnArbor}
\usecolortheme{dolphin}


\makeatletter
\setbeamertemplate{title page}
{
  \vbox{}
  \vfill
  \begin{centering}
      \setbeamercolor{title}{bg=white!15!orange,fg=structure}
    \begin{beamercolorbox}[sep=8pt,center,rounded=true,shadow=true,]{title}
      \usebeamerfont{title}\inserttitle
    \end{beamercolorbox}
    
    \setbeamercolor{title}{bg=white,fg=structure}
    \begin{beamercolorbox}[sep=8pt,center]{title}
      {\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par}
      \ifx\insertsubtitle\@empty%
      \else%
        \vskip0.25em%
        {\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}%
      \fi%     
    \end{beamercolorbox}%
    \vskip1em\par
    \begin{beamercolorbox}[sep=8pt,center]{author}
      \usebeamerfont{author}\insertauthor
    \end{beamercolorbox}
    \vskip-1em\par % change here
    \begin{beamercolorbox}[sep=8pt,center]{institute}
      \usebeamerfont{institute}\insertinstitute
    \end{beamercolorbox}
    \begin{beamercolorbox}[sep=8pt,center]{date}
      \usebeamerfont{date}\insertdate
    \end{beamercolorbox}\vskip0.5em
  \end{centering}
  \vfill
}
\makeatother

\begin{document}

\title[Representaciones de grupos de simetría]%
{\textbf{Las representaciones metapléctica y de espín\\
de ciertos grupos de simetría:\\
un estudio comparativo}}
 
\subtitle[Tesis]{\footnotesize {\emph{Tesis sometida para obtar por al grado de Maestría Académica en Matemática}}}

\author[Adrián J. Naranjo A.]{Adrián José Naranjo Alvarado}

\institute[]{\small Escuela de Matemática,
                    Universidad de Costa Rica}

\date{10 de septiembre del 2021}



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

\end{document}

enter image description here

Related Question