Beamer con tema CambridgeUS: el título en el pie de página no encaja

Beamer con tema CambridgeUS: el título en el pie de página no encaja

Estoy usando un proyector con el tema CambridgeUS. Mi problema es que, con la configuración predeterminada, el título de la presentación, tal como aparece en el pie de página, no cabe, sino sólo unas pocas letras. A continuación informo un ejemplo. ¿Cómo puedo ampliar ligeramente el espacio para la barra central?

ingrese la descripción de la imagen aquí

Respuesta1

Podrías redefinir la línea de pie. De forma predeterminada, cada cuadro es wd=.333\paperwidthancho, pero puedes redistribuir las proporciones según el diseño que desees:

\documentclass{beamer}

\title{some very long title which overflows the footline and needs some extra space}

\usetheme{CambridgeUS}

\makeatletter
\setbeamertemplate{footline}{%
  \leavevmode%
  \hbox{%
  \begin{beamercolorbox}[wd=.2\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
    \usebeamerfont{author in head/foot}\insertshortauthor\expandafter\ifblank\expandafter{\beamer@shortinstitute}{}{~~(\insertshortinstitute)}
  \end{beamercolorbox}%
  \begin{beamercolorbox}[wd=.6\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
    \usebeamerfont{title in head/foot}\insertshorttitle
  \end{beamercolorbox}%
  \begin{beamercolorbox}[wd=.2\paperwidth,ht=2.25ex,dp=1ex,leftskip=2ex,rightskip=2ex,sep=0pt]{date in head/foot}%
    \hfill%
    \usebeamerfont{date in head/foot}%
    \insertshortdate{}%
    \hfill%
    \usebeamercolor[fg]{page number in head/foot}%
    \usebeamerfont{page number in head/foot}%
    \usebeamertemplate{page number in head/foot}%
  \end{beamercolorbox}}%
  \vskip0pt%
}
\makeatother

\begin{document}

\begin{frame}

\end{frame}

\end{document}

ingrese la descripción de la imagen aquí

información relacionada