A seção e subseção do Beamer CambridgeUS não têm espaço suficiente

A seção e subseção do Beamer CambridgeUS não têm espaço suficiente

Estou escrevendo um arquivo de látex do Beamer e tive alguns problemas ao definir a seção e subseção. O espaço não é suficiente para exibir meu texto. Quero aumentar o escopo para incluir o texto, em vez de reduzir o tamanho do texto.

insira a descrição da imagem aqui

aqui está meu 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}

obrigado!

Responder1

Como um hack rápido, você pode 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}

insira a descrição da imagem aqui

Se precisar de um controle mais preciso sobre o tamanho, você pode alterar a altura do título modificando o valor em ht=...(e possivelmente dp=...) na seguinte redefinição do 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}

insira a descrição da imagem aqui

informação relacionada