저는 다음과 같이 명령을 사용했습니다 \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}