应该是未编号的章节并保留前一章的编号?

应该是未编号的章节并保留前一章的编号?

首先,英语不是我的母语,因此对于任何不清楚的信息/错误我深感抱歉!

我正在写一份实习报告,但在章节编号方面遇到了问题。我有一个未编号的引言(我使用了)\chapter*{Introduction},后面跟着三个正常显示的编号章节。但是,我有一个结论和参考书目,虽然我使用和来命名它们,\chapter*{Conclusion}\chapter*{Bibliography}它们的数字却是 3,与第三章完全相同。

在此处输入图片描述 在此处输入图片描述

具体来说,我有一个主文件,我用\input它来为每个部分实现单独的文件。这是主页上的代码(我直接在主页面上手动将图表和参考书目列表添加到目录中,但我还在单独的文件中添加了未编号的章节\addcontentsline{toc}{chapter}{Introduction})。

\documentclass{report} 
\usepackage[utf8]{inputenc} 
\usepackage{color} 
\usepackage[T1]{fontenc}
\usepackage[a4paper,left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry} 
\usepackage[french]{babel} 
\usepackage{libertine} 
\usepackage[pdftex]{graphicx} 
\usepackage[colorlinks]{hyperref} 
\usepackage[style=numeric]{biblatex} 
\usepackage{titlesec} 
\usepackage{amsmath} 
\usepackage{appendix}    
\addbibresource{biblio.bib}
\begin{document}

\input{title}

\tableofcontents

\listoffigures

\addcontentsline{toc}{chapter}{Table des figures}
\input{remerciements}
\newpage
\input{introduction}
\newpage
\input{entreprise}
\newpage
\input{stage}
\newpage
\input{travaux}
\newpage
\input{conclusion}
\addcontentsline{toc}{chapter}{Bibliographie}
\printbibliography


\end{document}

这个问题从何而来?我该如何解决?提前感谢您的帮助:)

相关内容