Beamer 的标题中有多个行

Beamer 的标题中有多个行

我找到了一个我喜欢的模板。这是一个现成的模板奈梅亨拉德堡德大学

在此处输入图片描述

该机构的名称大于奈梅亨拉德堡德大学,所以我想把机构排列成两行,我该怎么做?

\defbeamertemplate*{headline}{ru theme}{%
  \leavevmode%
  \@tempdimb=2.4375ex%
    \multiply\@tempdimb by\beamer@sectionmax%
  \pgfdeclareimage[height=.9\@tempdimb]{logo}{ru_logo}%
  \logo{\pgfuseimage{logo}}%
  \ifdim\@tempdimb>0pt%
    \advance\@tempdimb by 1.125ex%
    \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{section in head/foot}%
      \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}%
    \end{beamercolorbox}%
    \begin{beamercolorbox}[wd=.4\paperwidth,ht=\@tempdimb,right]{subsection in head/foot}%
      \vbox to\@tempdimb{\vfil\vfil\textbf{\footnotesize\insertshortinstitute~~}\vfil}%
    \end{beamercolorbox}%
    \begin{beamercolorbox}[wd=.1\paperwidth,ht=\@tempdimb,left]{subsection in head/foot}%
      \vbox to\@tempdimb{\vfil\insertlogo\vfil\vfil}%
    \end{beamercolorbox}%
  \fi%
}

提前感谢您提供的任何有用的提示!

答案1

我找到了这个问题的答案。只需写

\vbox to\@tempdimb{\vfil\textbf{\footnotesize\insertshortinstitute[width={4.5cm},center,respectlinebreaks]}\vfil}

width是换行符的大小。

相关内容