4

I am writing my thesis in Lyx and for some reason, probably due to the style sheet, I am unable to print the complete thesis. It gives weird errors. However, individually all chapters are easily converted to PDF.

Is there a command that allows printing only a few selected chapters but does not affect referencing? I could then restart page numbering and get a quick fix to the problem.

Please advise.

Werner
  • 603,163
Rajeev
  • 41

1 Answers1

5

Use \includeonly

\documentclass{book}

%\includeonly{Introduction}% uncomment this line if you want to include chapter "Introduction" only without affecting the referencing.

\begin{document}
\include{Introduction}
\include{Summary}
\end{document}
Joseph Wright
  • 259,911
  • 34
  • 706
  • 1,036
Display Name
  • 46,933