Estoy escribiendo un archivo Beamer de látex y tuve algunos problemas al configurar la sección y la subsección. El espacio no es suficiente para mostrar mi texto. Quiero aumentar el alcance para incluir el texto, en lugar de reducir el tamaño del texto.
aquí está mi texto
\documentclass[compress]{beamer}
\usetheme{CambridgeUS}
\setbeamerfont{section in head/foot}{size=\fontsize{15}{15}\selectfont}
\setbeamerfont{subsection in head/foot}{size=\fontsize{15}{15}\selectfont}
\begin{document}
\section{Title Page}
\subsection{XXXXXXXXXXXXXXXXXXXXXXXX}
\begin{frame}
\title{Estimation}
\titlepage
\end{frame}
\end{document}
¡gracias!
Respuesta1
Como truco rápido, podrías usar\addtobeamertemplate{headline}{\usebeamerfont{section in head/foot}}{}
\documentclass[compress]{beamer}
\usetheme{CambridgeUS}
\setbeamerfont{section in head/foot}{size=\fontsize{15}{15}\selectfont}
\setbeamerfont{subsection in head/foot}{size=\fontsize{15}{15}\selectfont}
\addtobeamertemplate{headline}{\usebeamerfont{section in head/foot}}{}
\begin{document}
\section{Title Page}
\subsection{XXXXXXXXXXXXXXXXXXXXXXXX}
\begin{frame}
\title{Estimation}
\titlepage
\end{frame}
\end{document}
Si necesita un control más preciso sobre el tamaño, puede cambiar la altura del título modificando el valor en ht=...
(y posiblemente dp=...
) en la siguiente redefinición del título:
\documentclass[compress]{beamer}
\usetheme{CambridgeUS}
\setbeamerfont{section in head/foot}{size=\fontsize{15}{15}\selectfont}
\setbeamerfont{subsection in head/foot}{size=\fontsize{15}{15}\selectfont}
\setbeamertemplate{headline}{%
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.5\paperwidth,ht=4.65ex,dp=1.5ex,right]{section in head/foot}%
\usebeamerfont{section in head/foot}\insertsectionhead\hspace*{2ex}
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.5\paperwidth,ht=4.65ex,dp=1.5ex,left]{subsection in head/foot}%
\usebeamerfont{subsection in head/foot}\hspace*{2ex}\insertsubsectionhead
\end{beamercolorbox}}%
\vskip0pt%
}
\begin{document}
\section{Title Page}
\subsection{XXXXXXXXXXXXXXXXXXXXXXXX}
\begin{frame}
\title{Estimation}
\titlepage
\end{frame}
\end{document}