-1

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?

Dario
  • 1,340

1 Answers1

1

I used \subtitle{Subtitle\\[1em] Sub-Subtitle} and it worked as expected. You must be more specific than "[...] but it does not work. Any idea?" if this is not what you want.

enter image description here

Related

  • When I follow your suggestion, i cannot change line but a comma is put between the subtitle and the subsubtitle. Both stay in the same line. That was what I meant when I said that the solution does not work – Dario Jun 23 '21 at 12:54
  • May it depend on the specific template i am using? I am using a modified version of the Torino beamer template – Dario Jun 23 '21 at 12:55
  • Yes, maybe. It is best to provide code in your question that actually shows the problem. – Dr. Manuel Kuehner Jun 23 '21 at 19:27
  • If the code that you provide does not reproduce the problem then it is close to impossible to help / guess :) – Dr. Manuel Kuehner Jun 23 '21 at 20:07