Graphics, Figures & Tables ⇒ table placement
-
- Posts: 11
- Joined: Thu Sep 03, 2009 11:02 am
table placement
I have got a placement problem, that realy annoys me.
I have two different subsections. The first one contains a table.
How can I achieve that the table is placed before the caption of the second subsection?
subsection[
...
...
[table]
]
subsection[
...
...
]
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
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
table placement
use positioning parameters to allow more possibilities for the placement of the table, like
Code: Select all
\begin{table}[!htbp]
...
\end{table}
Alternatively you could load the package placeins and use its command \FloatBarrier.
Perhaps see Prevent floating of figures or tables for more solutions.
Stefan
-
- Posts: 11
- Joined: Thu Sep 03, 2009 11:02 am
Re: table placement
Have a nice day.