I want to include a document in one of my section. For example,
\section{Introduction}
We are blablabla.....
\section{Our Previous Document: Document 1}
\include{Document1.tex}
Unfortunately, when I tried to build it, I couldn't see the document (document1) in my section. Can anyone help me?
\inputnot\includeotherwise you will have a page break after the section heading – David Carlisle May 29 '17 at 17:55Document1.texby any chance include a preamble? – Skillmon May 29 '17 at 18:00\includeonly(but once you change the\includeto\inputthen even\includeonlywould not be a problem. – David Carlisle May 29 '17 at 18:03\includestarts a new page, hard to see how it could overlap. – cfr May 29 '17 at 19:45\includeis the wrong command here, use\input. Please see https://tex.stackexchange.com/questions/246/when-should-i-use-input-vs-include for more information. – Martin Scharrer Sep 26 '18 at 05:30