我想从课堂标题中删除几个部分beamer
。我该如何删除它们?我希望它们在我的目录中,但不想在我的标题中,因为那样会太大。
我尝试过这个但是这会删除整个标题。
%\setbeamertemplate{headline}{}
答案1
使用空的可选参数\section
:
\documentclass{beamer}
\useoutertheme{miniframes}
\begin{document}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
\section{Test Section on ToC and on Headline}
\begin{frame}
test
\end{frame}
\section[]{Test Section on ToC not on Headline}
\begin{frame}
test
\end{frame}
\section{Another Test Section on ToC and on Headline}
\begin{frame}
test
\end{frame}
\end{document}
最终的“大纲”框架显示目录和标题: