仅在第一页显示徽标

仅在第一页显示徽标

我只想在标题页中插入徽标。但是,它会显示在所有页面上!我怎样才能让这两个图形仅在标题页中显示为徽标?

我在序言中输入:

\logo{%
   \includegraphics[scale=.2]{fig1.pdf}\hspace*{4.75cm}~%
   \includegraphics[scale=.2]{fig2.jpg}\hspace*{0.75cm}%
   }

然后

\begin{document}

\maketitle

\begin{frame}
\frametitle{}
...
\end{frame}

答案1

仅在标题页中显示徽标所使用的命令是\titlegraphic

例如:

\documentclass{beamer}

\author{Me}
\title{The title}
\institute{My institute}

% logo of my university
\titlegraphic{\includegraphics[width=2cm]{logopolito}\hspace*{4.75cm}~%
   \includegraphics[width=2cm]{logopolito}
}

\begin{document}
\begin{frame}
\titlepage
\end{frame}

\begin{frame}{Test 1}
test
\end{frame}

\begin{frame}{Test 2}
test
\end{frame}
\end{document}

我报告前两帧:

在此处输入图片描述

在此处输入图片描述

答案2

我遇到了类似的问题,并且不喜欢这个titlegraphic解决方案。以下是我所做的:

\documentclass{beamer}

\author{Me}
\title{The title}
\institute{My institute}

% logo of my university  
\logo{\includegraphics[width=2cm]{logopolito}\hspace*{8cm}~%
  \includegraphics[width=2cm]{logopolito}
}

\begin{document}
\begin{frame}
\titlepage
\end{frame}

\logo{}

\begin{frame}{Test 1}
test
\end{frame}

\begin{frame}{Test 2}
test
\end{frame}
\end{document}

这给了我以下输出:

标题页 第一帧 第二帧

相关内容