处理大型文件时,通常如何制作章节.tex
?
您将其放在\chapter{Chapter 1}
主.tex
文件中,还是放在包含文件中?
什么是常态,以某种方式做这件事有什么区别或优势吗?
\documentclass[a4paper,12pt,twoside,openright]{book}
\begin{document}
\chapter{Chapter 1}
\input{Chapter1}
\end{document}
或者你把它放在单独的文件\chapter{Chapter 1}
中Chapter1.tex
?
答案1
如果你正在写一本书或一篇论文,通常有多个章节,那么在我看来,编写一个中心文档是一个非常好的策略,包括文档类、praeambel(也许是一个自己的文件)、\begin{document}
章节,每个章节都在一个文件中(名称类似于preface.tex
、ìntroduction.tex
、conclusion.tex
)。不是使用chapter1.tex
或3.tex
等。因为可能会发生这种情况,您必须更改章节的顺序)。使中心文档立即变得易于理解。
每个章节文件包含整个章节包括章节标题!
如果您使用,\include{introduction}
您就不会忘记在新的(或正确的)一侧开始新的章节,因为\include
它会为您完成。
因此核心文件应该是:
\documentclass[options]{documentclass}
\input{praeambel.tex}
\begin{document}
\frontmatter % if book or scrbook
\include{preface} % starts on new page!
\tableofcontents
\mainmatter % if book or scrbook
\include{introduction}
% ...
\end{document}
该文件intrduction.tex
包含:
\chapter{Introduction}%
\label{sec:introduction}
the chapter text ...
等等。
只需将属于同一类的事物放在一起,并尽可能进行划分(构建逻辑单元)。