I am writing a presentation using Latex and beamer. Each frame in my presentation has a title, and may or may not have an additional subtitle.
What bothers me is that when there is the subtitle, the title moves a little up, and that movement is evident (and looks bad) during the slideshow.
\documentclass[14pt]{beamer}
\usetheme{Singapore}
\begin{document}
\begin{frame}
\frametitle{This is a title}
\framesubtitle{This is a subtitle}
This is the text
\end{frame}
\begin{frame}
\frametitle{This is a title}
This is the text
\end{frame}
\end{document}