Possible Duplicate:
How to fix table position
I'm defining a table in my document like so...
\begin{table}
\caption{my table}
\centering
\begin{tabular}{c llll c c c c}
\hline
Stuff & \multicolumn {1}{ c }{ } & more Stuff
\end{tabular}
\label{table:nonlin}
\end{table}
The table itself is pretty big, takes up almost the entire page. I'm creating it between two blocks of text however when compiled into a pdf it appears to just "float" to the bottom of the document. Why is this happening? How do I correct it?
