部分层次结构中缺少数字

部分层次结构中缺少数字

我有一个 .tex 文件,其中有两个.tex文件(例如a.texb.tex)作为输入。如果我更改它们的顺序,则一切正常。但是,当前顺序存在章节编号问题(例如,章节 5.1.1 的编号为 5..1,我的意思是在层次结构的第二层中缺少编号)。我想.tex按当前顺序打印这两个文件。请建议该怎么做。

答案1

您可以尝试下面的方法。当您有一篇大论文时,我发现将所有部分放在不同的文件中也很有用。您可以将 main.tex 文件保留在根文件夹中,并在其中创建另一个文件并将其命名为“main”,您可以在其中保存所有章节。您甚至可以为每个章节创建不同的文件夹,但您需要更改“include”中的路径。

所以:

main.tex 文件可能包含:

%%%%%%%%%%%%%% %%%%% MAIN: The chapters of the thesis %%%%%%%%%%%%%%% \include{main/Part0} \include{main/ch1_Introduction} %Part I: Earth and Beyond \include{main/PartI} \include{main/ch2_EarthAndBeyond}

Part0.tex 文件可能包含:

\part{Introduction}{}

ch1_Introduction.tex 文件可能包含:

\chapter{Introduction} \section*{Earth - Intro} \section*{Moon - Intro} \section*{Mars - Intro}

PartI.tex 文件可能包含:

\part{Earth}{} \label{PartI}

ch2_EarthAndBeyond.tex 文件可能包含:

\chapter{Discussing about Earth} \section{Introduction} \subsection{Europe} \subsection{Asia}

相关内容