Latex.\tableofcontents 使用 titlesec 包,在内容列表后添加额外的标记

Latex.\tableofcontents 使用 titlesec 包,在内容列表后添加额外的标记
\documentclass[a4paper,14pt,twoside]{extreport}

\begin{document}
    \tableofcontents
    \chapter{First chapter}
    \section{First section}
    \section{Second section}
    \chapter{Second chapter}
    \section{First section}
    \section{Second section}
\end{document}

标准 latex 命令 \tableofcontents 的结果创建如下内容: 在此处输入图片描述

但我喜欢在前面(后面)加上一些带圆圈的额外单词(标记),就像这样:

在此处输入图片描述

答案1

使用该包的一种可能方法tocloft

\documentclass[a4paper,14pt,twoside]{extreport}

\usepackage{tocloft}
\renewcommand*{\cftsecpresnum}{\S}


\begin{document}
    \tableofcontents
    \chapter{First chapter}
    \section{First section}
    \section{Second section}
    \chapter{Second chapter}
    \section{First section}
    \section{Second section}
\end{document}

在此处输入图片描述

相关内容