I am writing on a document where I often have the situation that a table is at the end of a page, but then Latex puts the table on the next page. Now the problem is: The text that is supposed to be AFTER(!) the table appears on the preceding page, as there is apparently not enough space for the table. This is of course an awful situation.
Therefore, I either want to have this space on the preceding page left blank and continue with my table on the next page or I want to split my table into pieces (but not manually, as I would then have to adjust this too frquently then)
Does anybody have an idea how I could solve this problem?
\documentclass{...}and ending with\end{document}. – Feb 21 '15 at 16:20Hoption of thefloatpackage as in:\begin{table}[H] ... \end{table}– Maarten Dhondt Feb 21 '15 at 16:23tables are floats. If you don't want the table to move, just use e.g.centerperhaps combined with thecaptionofpackage. – Andrew Swann Feb 21 '15 at 16:26[H]. the reason they have numbered captions is so that you can refer to them without assuming that they are at a fixed position relative to the text. – David Carlisle Feb 21 '15 at 16:35