如何在目录中添加符号 \textsection?

如何在目录中添加符号 \textsection?

我想在目录中添加符号 \textsection,我该怎么做?我正在使用 AMSBook 类。

在此处输入图片描述

上图显示了 AMSBook 类的标准目录仅放置 \tableofcontents,但没有 \textsection。

答案1

这是在第二个参数前面进行更改\tocsection以添加的问题。\S

\documentclass{amsbook}

\numberwithin{section}{chapter}

\makeatletter
\renewcommand\tocsection[3]{%
  \indentlabel
  {\@ifnotempty{#2}{\ignorespaces #1 \S#2.\quad }}#3%
}
\makeatother


\begin{document}

\frontmatter
\tableofcontents

\mainmatter

\part{First part}

\chapter{First chapter}

\section{First section}

\section{Second section}

\end{document}

在此处输入图片描述

相关内容