1

I'd like to print a second subtitle in the middle of a frame in Beamer.

I tried using some macros used in the source of Beamer but couldn't make it work.

Bernard
  • 271,350
xavierm02
  • 787

1 Answers1

4

Using the subtitle font and colour you could simply fake it:

\documentclass{beamer}

\begin{document}

\begin{frame}
\frametitle{title}
\framesubtitle{subtitle}

text

{\hskip-1.75em\usebeamerfont{framesubtitle}\usebeamercolor[fg]{framesubtitle} another subtitle}

text

\end{frame}

\end{document}

enter image description here