[Tex/LaTex] One table/figure per page in LaTeX

floatspositioning

I am struggling with figure/table positioning in LaTeX. Basically, I'd like to have one figure/table per page. I found how to, but the problem is that LaTeX puts the table/figure in a single page, but the page before the figure page is not filled with text. So, basically I have a page filled for an half, a page with my figure/table and lastly a page filled normally with text. I'd like to have the two pages filled homogeneously with text. Is there any option that I'm missing?

I am using the package float with p option and a \clearpage at the end of each figure/table.

I hope I've been clear in my explanation.

Best Answer

I've found the solution..this works just fine for me

\renewcommand{\textfraction}{0.01}
\renewcommand{\topfraction}{0.01}
\renewcommand{\bottomfraction}{0.01}
\renewcommand{\floatpagefraction}{0.01}
\setcounter{totalnumber}{1}

thanks everybody for any kind of help

Related Question