[Tex/LaTex] two frame titles in beamer

beamerframe-title

In a beamer presentation I would like to put both the conclusions and acknowledgements on a single slide. Visually, I would like to first have the "Conclusions" caption, then some bullets, then the "Acknowledgements" caption and finally some acknowledgement bullets. "Conclusions" and "Acknowledgements" should have the same formatting. I will generate "Conclusions" using \frametitle. Beamer does not accept two \frametitles in a single slide, so is there some other way to put text with the same formatting as the frame title?

Best Answer

As you gave no MWE nor any indication which theme you are using, I'm going to answer for the default theme.

\documentclass{beamer}



\begin{document}

\begin{frame}
\frametitle{test}

text

\vfill
{\hskip-1.8em\usebeamerfont{frametitle}\usebeamercolor[fg]{frametitle} blub}
\vfill
text

\end{frame} 

\end{document}

enter image description here