Hello all,
I have written something like that:
"some texts before the table"
\begin{table}
...
\end{table}
"some texts after the table"
As the table is floating and not small, Latex shows the order like this:
"some texts before the table"
"some texts after the table"
the table on the next page
However, the order of text->table->text is more important for me than being floating. And i do not mind having some blank lines between texts and the table.
Does anyone know how to make LaTeX respect the order?
Thanks and regards
Tie CHENG
Graphics, Figures & Tables ⇒ how to keep the order "text -> table -> text"?
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
how to keep the order "text -> table -> text"?
Well, if you really don't want it to float don't use a floating environment. On the other hand, if you insist on using a floating environment but don't want it to float, load the float package and use the H specifier:
Code: Select all
\begin{table}[H]
...
\end{table}
Joseph Wright
Re: how to keep the order "text -> table -> text"?
This is exactly what i want!
Thank you very much!
Tie CHENG
Thank you very much!
Tie CHENG