如何为目录添加编号?

如何为目录添加编号?

在我的报告中我希望有这样的编号: 在此处输入图片描述

所以我需要以某种方式更改章节中的目录,对吗?到目前为止,这就是我现在所拥有的: 在此处输入图片描述

答案1

如果您使用标准课程,您可以尝试

\documentclass{report}
\begin{document}
{\let\oldchapter\chapter
\def\chapter*#1{\oldchapter{#1}}
\tableofcontents}
\chapter{Foo}
\section{Bla}
\chapter{Foo bar}
\section{Bla bla}
\end{document}

相关内容