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.
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.
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}