我可能遇到与这个封闭式问题相同的问题:在目录中添加目录
我希望目录中出现“目录”行,并带有页码等。
我尝试输入\addcontentsline{toc}{chapter}{Table of contents}
以下\tableofcontents
命令,但没有结果。
这是我的 MWE
\documentclass{report}
\begin{document}
\tableofcontents
\addcontentsline{toc}{chapter}{Table of contents}
\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction}
\end{document}
答案1
\documentclass{report}
\usepackage{tocbasic}
\setuptoc{toc}{totoc}
\begin{document}
\listoftoc[Something like the Table of \contentsname]{toc}
\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction}
\end{document}
您可以将“ Something like the Table of \contentsname
”替换为目录的标题。更改标题后,您至少需要运行两次 LaTeX。