\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}