我希望 Beamer 目录如下:
- 项目
1.1. 项目
1.2. 项目 - 项目
2.1. 项目
2.2. 项目
部分类似如下:删除 Beamer 目录中的项目符号,但第二层列表项(子部分)的名称前没有编号。那么,如何为目录的所有点(层)添加编号?
答案1
像这样吗?
\documentclass{beamer}
\setbeamertemplate{section in toc}[sections numbered]
\setbeamertemplate{subsection in toc}[subsections numbered]
\begin{document}
\section{Foo}
\subsection{Bar}
\section{Baz}
\subsection{Naz}
\begin{frame}
\tableofcontents
\end{frame}
\end{document}