在我的论文工作中,我需要在目录中添加零章节,例如带有页码、摘要、致谢、注释和介绍的目录本身,但通过使用 \tableofcontents,我只得到了内容列表中带有章节编号的章节。所以需要针对这个问题的建议,谢谢
答案1
默认情况下,未编号的章节、节等不包含在目录中。如果要将它们添加到toc
给定级别,请\addcontentsline{toc}{<level>}{<title>}
在元素后使用您想要的位置。因此,例如对于一个章节:
% The unnumbered chapter
\chapter*{chaptertitle}
% The command to manually add the content entry in toc
\addcontentsline{toc}{chapter}{chaptertitle}
如果您通过包自定义章节标题的布局,则可以使用键和选项titlesec
自动进行包含,并在以下行中插入类似的代码:numberless
explicit
titleformat
\titleformat{name=\chapter, numberless}{...}{...}{...}{\addcontentsline{toc}{chapter}{#1} ...}