Graphics, Figures & Tables ⇒ how to keep the order "text -> table -> text"?
how to keep the order "text -> table -> text"?
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
josephwright
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
how to keep the order "text -> table -> text"?
Code: Select all
\begin{table}[H]
...
\end{table}
Re: how to keep the order "text -> table -> text"?
Thank you very much!
Tie CHENG