如何在 Beamer 的标题页顶部设置标题图形

如何在 Beamer 的标题页顶部设置标题图形

我想将大学名称及其徽标设置在标题页顶部(所有标题上方)。但使用\vspace

  \titlegraphic{\includegraphics[width=2cm]{GerbKievUniversity}\hspace*  {0cm}\vspace*{5cm}}  

什么也没做。

怎么做?

答案1

您可以在本地重新定义background模板以包含信息;类似这样的内容(我使用了两个并排的\parboxes 作为徽标和大学名称):

\documentclass{beamer}

\title{The Title}
\subtitle{The Title}
\author{The Author}
\date{\today}
\titlegraphic{}

\begin{document}

{
\setbeamertemplate{background}{%
  \raisebox{-1cm}{%
    \parbox[c]{3cm}{\centering%
      \includegraphics[width=2cm]{example-image-a}%
    }%
    \parbox[c]{\dimexpr\paperwidth-3cm\relax}{\centering%
      {\Large The Name of the University}%
    }%
  }%
}    
\begin{frame}
\maketitle
\end{frame}
}

\end{document}

最终的标题页:

在此处输入图片描述

评论

  • 请注意,需要用括号括住整个构造以保持模板的本地重新定义。

  • 请根据您的需要随意更改设置;特别是,根据所使用的主题,您可能需要更改中使用的值\raisebox

相关内容