重新开始编号未编号的章节后的章节编号

重新开始编号未编号的章节后的章节编号

我怎样才能制作一个没有编号的章节(结论)?

我尝试过这个:

\documentclass{report}
\begin{document}
\tableofcontents

\chapter{Introduction}
\chapter{Chapter 1}  
\chapter*{Conclusion} 
\addcontentsline{toc}{chapter}{Conclusion}  
\end{document}

我有这个

在此处输入图片描述

但我想要:

1  Conclusion
2  Perspectives

不是

5  Conclusion
6  Perspectives

答案1

\chapter*不会增加计数器chapter,这会重置节计数器。最简单的方法是将section计数器重置为 0:

\chapter*{Conclusion}
\addcontentsline{toc}{chapter}{Conclusion}
\setcounter{section}{0}

相关内容