I'm preparing a presentation and figured out that some text disappears or has a wrong color. Below you'll find a MWE. If you comment out the JuanLesPins theme the text with the \textsc command will appear or disappear:
\documentclass[english]{beamer}
\usetheme{JuanLesPins}
\title{Foo}
\author{Bar}
\begin{document}
\begin{frame}
\titlepage{}
\end{frame}
\begin{frame}
\frametitle{Sets}
\begin{columns}
\begin{column}{.6\textwidth}
\textsc{Georg Cantor} is the founder of set theory and he said:
\end{column}
\begin{column}{.4\textwidth}
baz
\end{column}
\end{columns}
\end{frame}
\end{document}
Can you tell what the reason for this behaviour is and how this can be corrected?
whaleandorchid, the innerthemeroundedand occurs only on the first frame after\titlepagehas been issued, only inside the first column and applies to any text there. – Andrew Swann Jan 27 '17 at 11:33