我正在使用Berlin
主题创建带有 Beamer 的演示文稿。我喜欢主题headline
显示footline
导航、作者等,但我想在标题幻灯片上隐藏这些信息(因为它已经显示在那里),并让它再次出现在所有后续幻灯片上。
但我确实不是想要失去标题和尾注本身(\setbeamertemplate{headline}{}
例如使用只会使整个标题消失)。
这个问题与我的有点相似,但我尝试修改那里显示的代码,但对我来说不起作用(请参阅下面的 MWE)。
梅威瑟:
\documentclass{beamer}
\title{Title}
\author{Jane Doe}
\institute{University of Foo}
\date{\today}
% Beamer setup
\usetheme{Berlin}
\usecolortheme{spruce}
\setbeamertemplate{navigation symbols}{}
\renewcommand*{\slideentry}[6]{} % hide subsection bullets and remove space
\begin{document}
%\setbeamertemplate{headline}{}
\frame{\titlepage}
%\setbeamertemplate{headline}[headline theme]
\section{Test}
\begin{frame}
Test
\end{frame}
\end{document}
答案1
无需费尽心思真正从页眉/页脚中删除信息,只需将字体颜色设置为与背景颜色相同即可隐藏它。
\documentclass{beamer}
\title{Title}
\author{Jane Doe}
\institute{University of Foo}
\date{\today}
% Beamer setup
\usetheme{Berlin}
\usecolortheme{spruce}
\setbeamertemplate{navigation symbols}{}
\renewcommand*{\slideentry}[6]{} % hide subsection bullets and remove space
\begin{document}
{
\setbeamercolor{author in head/foot}{use=palette secondary, fg=palette secondary.bg}
\setbeamercolor{title in head/foot}{use=palette tertiary, fg=palette tertiary.bg}
\setbeamercolor{section in head/foot}{use=palette tertiary, fg=palette tertiary.bg}
\frame{\titlepage}
}
%\setbeamertemplate{headline}[headline theme]
\section{Test}
\begin{frame}
Test
\end{frame}
\end{document}
答案2
尝试以下代码关联
{
\setbeamercolor{section in head/foot}{use=palette tertiary, fg=palette tertiary.bg}
\setbeamercolor{subsection in head/foot}{use=palette secondary, fg=palette secondary.bg}
\begin{frame}
\titlepage
\end{frame}
}