我使用的命令\addcontentsline
如下:
\chapter*{Conclusions and Perspectives}
\addcontentsline{toc}{chapter}{Conclusions and Perspectives}
但是,我得到了以下结果:
结论与观点138
数字 138 代表页码。如何修复此问题
答案1
您可以使用\chapter{}
命令代替 \chapter*{},然后使用 手动隐藏章节号\setcounter{secnumdepth}{-1}
。这样,“结论和观点”一章将出现在目录中,且不带页码。
\documentclass{report}
\begin{document}
\tableofcontents
% Suppress chapter number
\setcounter{secnumdepth}{-1}
% Add unnumbered chapter to table of contents
\chapter{Conclusions and Perspectives}
% Reset chapter numbering
\setcounter{secnumdepth}{0}
% Your content here
\end{document}