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