I am writing thesis with 10 chapters, each of them has multiple sections.
In Latex, I put each section in a separate file.
But, there are blank spaces between sections in each chapter in the pdf file.
how to remove the blank meanwhile still keeping each section in separate .tex file ?
Any help will be appreciated.
\include{...}to load the files. use\input{...}instead. using separate files is a good approach, allowing you to shuffle things around and otherwise concentrate your efforts just where you're currently working. – barbara beeton Aug 01 '12 at 22:28\input{..}commands. This can also cause extra vertical space with the section commands. – R. Schumacher Aug 02 '12 at 01:33