I would like to have a title for my beamer presentation, a subtitle and a sub-subtitle. Of course I do not have problems with the title and the subtitle, but I cannot find a way to add a sub-sub-title. This is my MWE
\documentclass[xcolor=pdftex,t,11pt]{beamer}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PRESENTATION INFO %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\author{My name}
\title{Title}
\subtitle{Subtitle}
\institute{Department of Economics \My University}
\date{June 2021}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SLIDE DEFINITIONS %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\section{Introduction}
\begin{frame}
\frametitle{Introduction}
\begin{itemize}
\item In these lectures we will focus on dynamic panel data models (DPD).\medskip
\end{itemize}
\end{frame}
\end{document}
I tried to add
\subtitle{Subtitle \\ Sub-Sub-Title}
but it does not work. Any idea?
