Estoy preparando una presentación y descubrí que algún texto desaparece o tiene un color incorrecto. A continuación encontrará un MWE. Si comentas el JuanLesPins
tema, el texto con el \textsc
comando aparecerá o desaparecerá:
\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}
¿Puede decirnos cuál es el motivo de este comportamiento y cómo se puede corregir?
Respuesta1
Esto es muy extraño. El tema JuanLesPins
sólo carga una combinación de temas estándar con opciones estándar. Comentarlos muestra que lo siguiente es suficiente para reproducir el problema, ya que solo ocurre en la primera columna de la primera diapositiva después de \titlepage
y no tiene nada que ver con \textsc
:
\documentclass[english]{beamer}
\usecolortheme{whale}
\usecolortheme{orchid}
\useinnertheme[shadow=true]{rounded}
\title{Foo}
\author{Bar}
\begin{document}
\begin{frame}
\frametitle{Sets}
\begin{columns}
\begin{column}{.6\textwidth}
foo
\end{column}
\begin{column}{.4\textwidth}
baz
\end{column}
\end{columns}
\end{frame}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Sets}
\begin{columns}
\begin{column}{.6\textwidth}
foo
\end{column}
\begin{column}{.4\textwidth}
baz
\end{column}
\end{columns}
\end{frame}
\begin{frame}
\frametitle{Sets}
\begin{columns}
\begin{column}{.6\textwidth}
foo
\end{column}
\begin{column}{.4\textwidth}
baz
\end{column}
\end{columns}
\end{frame}
\end{document}
Una solución alternativa es agregar una columna ficticia a esa diapositiva.
\begin{frame}
\frametitle{Sets}
\begin{columns}
\begin{column}{0pt}
\end{column}
\begin{column}{.6\textwidth}
foo
\end{column}
\begin{column}{.4\textwidth}
baz
\end{column}
\end{columns}
\end{frame}