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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- 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