在 Beamer 中显示和隐藏徽标

在 Beamer 中显示和隐藏徽标

我正在用 Beamer 做我的第一个演示。我使用的是 CambridgeUS 主题,我想

  • 在第一帧的中心显示我院的徽标
  • 隐藏以下框架中的徽标

目前,我的文档如下所示:

\documentclass{beamer}
\usetheme{CambridgeUS}
\title{The Title}
\author{The Author}
\institute{The Institute}
\date{The Date}
\logo{\includegraphics[width=3cm]{TheLogo}}
\begin{document}
\begin{frame}
The Frame
\end{frame}
\end{document}

每帧右侧均显示徽标。我需要编辑/添加哪些内容才能实现我的目标?

答案1

\logo不要使用,而要使用\titlegraphic;前者会将徽标放置在所有框架中以及右下角;后者将徽标放置在标题页中并位于底部中央:

\documentclass{beamer}
\usetheme{CambridgeUS}

\title{The Title}
\author{The Author}
\institute{The Institute}
\date{The Date}

\titlegraphic{\includegraphics[width=3cm]{example-image-a}}

\begin{document}

\begin{frame}
\maketitle
\end{frame}

\begin{frame}
test
\end{frame}

\end{document}

在此处输入图片描述

相关内容