1

I have the following problem:

My section 7.2 contains a lot of tables. Now it shows 2 tables, and then there is a space left on the page, that is not big enough for the next table. Therefore, section 7.3 starts at that empty space. However, after that, there are still two pages full of tables that belong to section 7.2, so I prefer section 7.3 to start after these tables.

Is this possible?

Sean Allred
  • 27,421
Emmy
  • 11

1 Answers1

1

Adding ! in arguments of table gives LaTeX more flexibility and \clearpage forces putting all floats before a new page.

For example book.cls sets

\renewcommand\topfraction{.7}
\renewcommand\bottomfraction{.3}
\renewcommand\textfraction{.2}
\renewcommand\floatpagefraction{.5}
\renewcommand\dbltopfraction{.7}
\renewcommand\dblfloatpagefraction{.5}

and ! overrides these restrictions.