请问如何从标题页和目录页中删除徽标?
使用此代码:
\documentclass[xcolor={dvipsnames}]{beamer}
\usetheme{CambridgeUS}
\author{The Author}
\title{Work Culture}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\logo{\includegraphics[height=0.5cm]{mylogo}}
\begin{frame}
\frametitle{Test title}
\framesubtitle{Test subtitle}
test text
\end{frame}
\end{document}
多谢!
答案1
此行使徽标出现在除第一页之外的每一页上
\logo{\includegraphics[height=0.5cm]{mylogo}}
删除上面的那行后,图像将不再出现。
如果要在除标题页和目录之外的所有页面中显示徽标,请在 \logo 命令之前定义这些框架。
\documentclass[xcolor={dvipsnames}]{beamer}
\usetheme{CambridgeUS}
\author{The Author}
\title{Work Culture}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Table of Contents}
\end{frame}
\logo{\includegraphics[height=2cm]{mylogo}}
\begin{frame}
\frametitle{Test title}
\framesubtitle{Test subtitle}
test text
\end{frame}
\end{document}