How can I remove spaces inserted between different documents.
\include{project/Chapters/doc1}
\include{project/Chapters/doc2}
I want these two documents glued together with no spaces. Thank you!
How can I remove spaces inserted between different documents.
\include{project/Chapters/doc1}
\include{project/Chapters/doc2}
I want these two documents glued together with no spaces. Thank you!
\includewill always start a new page by design. Try\inputinstead. – daleif Mar 18 '20 at 17:55\inputrather than\includeto avoid spaces being inserted between the two sets of content: https://tex.stackexchange.com/a/250/21344 (this has some other side effects too, check the link for details) – Paul Gessler Mar 18 '20 at 17:55\includeforces a page break so you can use\inputinstead but if your files start with a heading such as\chapter{...}then in most classes\chapteralso forces a new page. But you do not say what document class you are using, or if your files start with a chapter heading. – David Carlisle Mar 18 '20 at 20:41