[Tex/LaTex] Tables float into bibliography

floatspositioning

I have a sequence of sections of my paper, followed by a bibliography (bibtex).

It looks pretty much like

\input{asection}
\input{appendix}
\bibliography(bibfile}

The problem is, "appendix" contains several tables, and they're being intersperesed among the bibliography. I want to have all of the tables, then the bibliography.

Adding a page break between sections or writing \begin{table}[h!] is not working. Any help would be appreciated!!

Best Answer

I think you want the \clearpage command. It forces LaTeX to push out all floating objects (figures and tables), and start a new page. Just put it in the source before you begin the appendix.

A Google search for \clearpage should point you to plenty more references if you want them.