i got several tables/figures and sections like this:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{...}\label{sec:...}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{table}[H]
\renewcommand{\tabcolsep}{3mm}
\renewcommand{\arraystretch}{1.5}
\begin{center}
\begin{tabular}{ll}
...
\end{tabular}
\caption{...}
\label{...}
\end{center}
\end{table}
After e.g. this definition I got a complete blank page within my PDF. I think it is something about the [H] parameter but i am not able to fix it, because without [H] the table does not appear below the section headline.
Any ideas how to fix this?
His not good selection fortablepositioning. If the table is to big to be fitted in the page, where is it would appear, all table with following text is move to the next page and left emty space in the previous page as you observed. – Zarko Sep 08 '15 at 11:43[H]which is only there to prevent floats being moved, by design is likely to introduce ugly white space at page breaks. – David Carlisle Sep 08 '15 at 12:17\centeringand usinghinstead ofH? – LaRiFaRi Sep 10 '15 at 13:46