如何在我的投影仪演示文稿中添加多个徽标?

如何在我的投影仪演示文稿中添加多个徽标?

我的学院要求在所有演示文稿中添加三个徽标。我如何在我的投影仪演示文稿中添加多个徽标?

答案1

Beamer 提供\logo{<logo code>}设置徽标的功能。您可以使用三个\includegraphics命令(或 PGF 图像命令)将所有三个徽标添加到其中。它们的位置取决于您选择的方案。如果您希望它们在标题页上稍大一些,您可以手动插入定义的徽标,例如\insertlogo\scalebox.

以下代码将三个缩放徽标以一个空格作为分隔符添加到右边框中。默认(空白)方案将它们放在右下角。

\documentclass{beamer}

\author{Me}
\title{Presentation}
\logo{%
    \includegraphics[width=1cm,height=1cm,keepaspectratio]{logo1}~%
    \includegraphics[width=1cm,height=1cm,keepaspectratio]{logo2}~%
    \includegraphics[width=1cm,height=1cm,keepaspectratio]{logo3}%
}
\institute{Three Kings\\\scalebox{2}{\insertlogo}}
\begin{document}
\frame{\maketitle}
\frame{text}
\frame{}

\end{document}

结果

答案2

页面上可以有多个徽标。问题只是它们应该出现在哪里。以下是侧边栏中第二个徽标的示例。

\documentclass{beamer}
\usecolortheme{dove}
\useoutertheme{sidebar}
\pgfdeclareimage[height=2.25ex,width=2.5\baselineskip]{institut-logo}{zedat}
\pgfdeclareimage[height=1.3cm]{uni}{fu-berlin}
\logo{\pgfuseimage{uni}}
\setbeamertemplate{footline}{\raisebox{-2ex}{\pgfuseimage{institut-logo}}
  \usebeamerfont{date in head/foot}\insertshortdate{}\hfill
  \usebeamertemplate{navigation symbols}\hfill
  \insertframenumber{}/\inserttotalframenumber}
\setbeamertemplate{sidebar right}{}

\begin{document}
\begin{frame}{Das Logo}
\begin{block}{Ein Beispiel mit der Umgebung \texttt{block}}
Es ist offensichtlich, dass wir hier zwei Logos auf der Folie haben.
\end{block}
\end{frame}
\end{document}

在此处输入图片描述

答案3

我还需要在标题页上放置三个徽标。

我以一种非常愚蠢的方式解决了这个问题,但它确实有效!我创建了一个带有三个徽标的 .jpg,所以我只需要插入一张图片,但那张图片中有三个徽标。请记住,现在您的图片是矩形,而不是正方形,因此请设置适当的尺寸

相关内容