Beamer frame title is placed on the top of the slide by default. Is there any way to place it just above the content in each slide ?
Minimal working example:
\documentclass{beamer}
\begin{document}
\begin{frame}{Frame Title}
The new arrangment
\end{frame}
\end{document}



\makeatletter \pretocmd\beamer@checkframetitle{\floattitle{Frame title}} \makeatother, see https://tex.stackexchange.com/a/436338/36296 for more information – samcarter_is_at_topanswers.xyz Jun 14 '18 at 20:03