我正在写一本书。我试图以这样的方式构建一个序言,即有 master.tex 和用于不同章节、序言、内容等的不同文件。我的乳胶知识水平为 4/10。如果有人能帮助我构建一个主乳胶序言来写一本书,我将不胜感激。谢谢
答案1
基本结构是有一些目录,/book/
然后有子目录:
/book/tex/
它将在其自己的文件中包含实际章节;因此,诸如chapter-0.tex
,,,,等等preface.tex
。chapter-29.tex
bibliography.tex
/book/img/
如果有的话,其中会有图像。
您可能希望将宏隔离在其自己的文件中,例如/book/macros.tex
。
请注意,你需要跟踪文章的开头部分,而不是主要内容(例如,此主题例如)。
那么你的书将是/book/book.tex
。你将通过 LaTeX 运行它。它的序言将是:
\documentclass{book}
\input{macros}
\title{The Great American Novel}
\author{Alex Nelson}
\date{\today}
\begin{document}
\frontmatter
\maketitle
\tableofcontents
\include{tex/preface} % if you have a preface, or foreward, include them here
\mainmatter
\include{tex/chapter-0}
\include{tex/chapter-1}
% ...
\backmatter
\appendix
\include{tex/appendix-0}
% ...
\end{document}