1

When I insert two tables with \include into my main.tex file, each table floats to a separate page. I would like to fit them into one page and mesh with the rest of the document. I can do that when the code for tables is contained in the main.tex file but obviously this complicates maintenance of the document tremendously.

1 Answers1

2

The command \include issues a new page before reading in the file, whereas \input acts as if the file were directly included at that point.

I use \include for things like chapters which are on a new page anyway, and \input for parts of the document that may be in multiple different documents or otherwise not directly related to the current file.

This question and this page have more details.

bombcar
  • 1,512
  • 10
  • 20