我在投影仪类的演示文稿中插入徽标时遇到了问题。
\logo{\includegraphics[scale=0.05]{logo.png}}
这就是我插入徽标的方式,效果很好;它按照需要放置在右下角。
但我不想在标题幻灯片上显示徽标。有没有办法隐藏标题幻灯片上的徽标?
答案1
只需使用
\frame[plain]{\titlepage}
而不是\maketitle
让你的标题页滑动。
根据您的需要,以下问题可能也会有用:
答案2
另一个选项是仅删除徽标但保留所有其他元素,即在本地重新定义logo
标题页的模板:
\documentclass{beamer}
\usetheme{Berkeley}
\logo{\includegraphics[scale=0.02]{ctanlion}}
\title{The Title}
\author{The Author}
\institute{The Institute}
\begin{document}
{
\setbeamertemplate{logo}{}
\begin{frame}
\maketitle
\end{frame}
}
\begin{frame}
test
\end{frame}
\end{document}
CTAN 狮子绘画由 Duane Bibby 绘制。
答案3
一个更简单的解决方案是在之后立即定义徽标,titlepage
以使其不会出现在该框架中。
例如:
\documentclass{beamer}
\usetheme{Berkeley}
\title{The Title}
\author{The Author}
\institute{The Institute}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
% insert the logo here
\logo{\includegraphics[width=1.5cm]{logopolito}} % <= test image
\begin{frame}
test
\end{frame}
\end{document}
将产生以下帧:
当然,该方法适用于演示文稿中的所有后续帧。