询问章节编号

询问章节编号

我刚开始使用 Latex,正在写我的期末论文。我一直在写章节和部分,并更新我的目录,以使我的工作结构化并使其更容易。我还将所有内容分成单独的 tex 文件,每当我需要输入该文件时,只需使用 \input。

我遇到了一些问题,但最烦人的一个问题,我尝试了一段时间,但还是没有解决,那就是章节/部分编号混乱了。这是我的代码摘录:

\begin{document}
\frontmatter
\maketitle
\newpage
\include{Remerciement/dedicace}
\newpage
\include{Remerciement/remerciement}
\newpage
\tableofcontents

\chapter{List of figures}

\chapter{Glossary}
\input{Glossary}

\chapter{General Introduction}
\blindtext[4]
\pagenumbering{arabic}

\chapter{Project Context}
\input{I.Project context/Project Context}

\chapter{Theoretical Concepts and State-of-the-art}
\input{II.Theoretical Concept and state of the art/stateofArt}

\chapter{proposed solution}
\input{III.Proposed Solution/ProposedSolution}
\chapter{Results and Discussion}
\input{IV.Results and discussion/Results}
\chapter{Bibliography}
\input{Bibliography}

\pagestyle{fancy}
\fancyhf{}

\end{document}


这是第一章 tex 文件的示例:

{\fontfamily{qtm}\selectfont

\addcontentsline{toc}{section}{Introduction}
\section*{Introduction}
\blindtext[1]

\vspace{1cm}

\section{Host Company Presentation}
\subsection{Lindt Presentation}
\input{I.Project context/Host Company presentation/Lindt/Lindt presentation}\newpage
\subsection{SOPP Presentation}
\input{I.Project context/Host Company presentation/SOPP/SOPP Presentation}\newpage
\subsection{STIR Presentation}
\input{I.Project context/Host Company presentation/STIR/STIR presentation}\newpage


\section{Project Overview}
\subsection{Project Frame}
\input{I.Project context/Project Overview/Project Frame/Project Frame}
\subsection{Problem and issues faced}
\subsection{Existing Solution and limitations}
\subsection{Proposed solution}

\section{Project Schedule}
}

目录最终看起来是这样的: 在此处输入图片描述

有人知道我做错了什么或该如何修复吗?我希望章节上有罗马数字,并且每章都重置节号。

答案1

在目录、简介、图表列表等之后,我没有看到 \mainmatter 来开始您的文档。我认为这是缺少章节编号的原因。

相关内容