beamer 类如何关闭特定框架上的 \logo 图像

beamer 类如何关闭特定框架上的 \logo 图像

我会\logo在大多数框架中使用该图像,但我想在特定框架上关闭该图像。

有办法得到它吗?

答案1

\logo{}在组内使用:

\documentclass[]{beamer}

\usepackage{graphicx}
\usepackage{duckuments}

\logo{\includegraphics[width=2cm]{example-image-duck}}

\begin{document}
\begin{frame}{}{}%>>>
  First duck with logo
\end{frame}%<<<
\bgroup
\logo{}%
\begin{frame}{}{}%>>>
  Second duck without.
\end{frame}%<<<
\egroup
\begin{frame}{}{}%>>>
  Third duck with logo.
\end{frame}%<<<
\end{document}

在此处输入图片描述 在此处输入图片描述 在此处输入图片描述

相关内容