我正在使用Goettingen
LaTeX beamer 主题,它有一个带目录的侧边栏。目录显示章节和子章节,但我想只显示此目录中的章节。通常我会通过设置计数器来实现这tocdepth
一点
\setcounter{tocdepth}{1}
但这不会影响侧边栏的目录。还有其他方法或简单的方法可以更改侧边栏的目录深度吗?
一位 MWE 表示:
\documentclass{beamer}
\usepackage{polyglossia}
\setmainlanguage{english}
\usetheme{Goettingen}
\setcounter{tocdepth}{1}
\begin{document}
\begin{frame}
\tableofcontents
\end{frame}
\section{Introduction}
\begin{frame}
\end{frame}
\section{Requirements}
\begin{frame}
\end{frame}
\subsection{Req 1}
\begin{frame}
\end{frame}
\subsection{Req 2}
\begin{frame}
\end{frame}
\subsection{Req 3}
\begin{frame}
\end{frame}
\section{Preliminaries}
\begin{frame}
\end{frame}
\subsection{Thing 1}
\begin{frame}
\end{frame}
\subsection{Thing 2}
\begin{frame}
\end{frame}
\end{document}
答案1
Beamer 有一个选项可以隐藏目录、侧边栏等中的子部分。
\documentclass[hideallsubsections]{beamer}