beamer 目录中的描述列表

beamer 目录中的描述列表

我知道我可以通过添加序言将演示文稿中的目录beamer从编号列表转换为项目符号列表。\setbeamertemplate{section in toc}[ball unnumbered]

但我怎样才能让它看起来像描述列表?我希望目录中的每个条目都以“章节 #.”开头,然后显示章节的标题。

beamer 用户指南第 10.5 节内容如下:

如果以上选项都不适合您,您必须直接更改section in toc模板subsection in toc

但没有提供如何去做的指导。

答案1

您可以定义自己的模板:

\documentclass{beamer}


\setbeamertemplate{section in toc}{Section \inserttocsectionnumber: \inserttocsection\par}


\begin{document}

\begin{frame}
    \tableofcontents
\end{frame} 

\section{title}
\begin{frame}
    abc
\end{frame} 

\section{another title}
\begin{frame}
    abc
\end{frame} 

\end{document}

在此处输入图片描述

相关内容