CambridgeUS 테마의 Beamer: 바닥글의 제목이 맞지 않습니다.

CambridgeUS 테마의 Beamer: 바닥글의 제목이 맞지 않습니다.

저는 CambridgeUS 테마로 비머를 사용하고 있습니다. 내 문제는 기본 설정에서는 바닥글에 표시되는 프레젠테이션 제목이 맞지 않고 몇 글자만 맞는다는 것입니다. 아래에 예를보고합니다. 중앙 막대의 공간을 약간 늘리려면 어떻게 해야 합니까?

여기에 이미지 설명을 입력하세요

답변1

각주를 재정의할 수 있습니다. 기본적으로 각 상자는 wd=.333\paperwidth넓지만 원하는 레이아웃에 비율을 재배포할 수 있습니다.

\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}

여기에 이미지 설명을 입력하세요

관련 정보