3

This is probably online but I am not sure how to word the search. I have a long latex document, and it is getting messy editing it, is there a way to split the chapters into separate latex documents and insert like a reference to them in the main document such that when the main document is build they will show in the pdf.

Thanks.

JohnReed
  • 2,627
mihajlv
  • 153

1 Answers1

7

use \input{firstfile}

see http://web.science.mq.edu.au/~rdale/resources/writingnotes/latexstruct.html for more information.

laltin
  • 186
  • Altin Thanks for the answer \include{firstfile} was what I was looking for. –  May 06 '12 at 23:58