I have the following problem:
Suppose I have a frametitle which takes two lines. Depending on whether the second line contains a character which uses the very upper part of the line like an 'Ü' (German umlaut), the space between the two lines differs.
Switching slides, the second line of the title may jump up and down (which is unwanted :-)).
As far as I have tested, this problem only occurs in the frame title and not for the body. I also found a post, describing a similar problem for chapter titles, but I wasn't able to figure out how to do this with beamer: titlesec: Vertical space that I don't want
Any idea is very welcome!
Edit: Here is an MWE:
\documentclass[mathserif]{beamer}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{frame}
\frametitle{This is a very long frame title. There is no capital umlaut, so the spacing is ok.}
\end{frame}
\begin{frame}
\frametitle{This is another very long frame title. The following capital umlaut Ü changes the spacing.}
\end{frame}
\end{document}
\documentclass{...}and ending with\end{document}. – jub0bs May 27 '13 at 09:09\strutto every second line without Ü. – Ignasi May 27 '13 at 09:15setspacepackage? For instance, try inserting\usepackage{setspace} \setstretch{1.5}in your preamble. You can fine-tune the value passed to\setstretchto your liking. – jub0bs May 27 '13 at 09:52