On Feb 27, 4:31 pm, china_108 <
cxini...@gmail.com> wrote:
> I want my table to be placed before the reference papers but it turns
> out that it is placed aftern the reference papers after compilation.
Perhaps your table is too big. Although it may seem that it should fit
on a page (visually), LaTeX may find that is stretches too far over
the right margin (or bottom/footer margin). You'll see messages like
Overfull \hbox xx.xxxxxpt
or
Overfull \vbox xx.xxxxxpt
in your LaTeX output, together with some line numbers. If you retrace
back to the LaTeX source at the same line numbers, you'll know which
part of your code caused to size problems. Regardless, when these
table 'overfull \vbox'es occur, tables are usually shipped to the end
of the document, because they will not fit on any pages due to them
being oversized. If you want to paste them and be done with it, insert
a \clearpage (or \cleardoublepage) just after the table. That way
LaTeX will flush all stored tables (remember, they are considered to
be floating environments/objects, so LaTeX places them or allows them
to float on a page or to other pages, depending on the preferences
requested).
Hope this helps,
Werner