s*****t 发帖数: 1994 | 1 Suppose you already have chapter1.tex, chapter2.tex,...
And the thesis.tex is to include all these chapters.
thesis.tex
\documentclass{report}
\usepackages{...}
\newcommand{...}
\includeonly{chapter1}
\begin{document}
\include{chapter1,chapter2,...}
\end{document}
Compile this file to get only chapter 1. Title for chapter 1
is in file chapter1.tex, beginning with \chapter{chapter title}.
Comment out the line \includeonly{..} will give the whole thesis. |
|