[Tex/LaTex] Remove the empty page before a table

landscapepage-breakingtables

I have the following problm. My thesis has a landscape oriented table with \scriptsize as size of font. The problem is that I have an empty page before that I can't remove it. If I change the font size to \tiny, I don't have the empty page but the letters are really tiny. Any solution to remove the empty page?

This is part of the code:

%First page     
Table summarizes the above mentioned characteristics of the ......

\vfill
%empty page that has to be removed
%Third page
\newpage

\begin{landscape}
\begin{table}[H]
\scriptsize
\centering

Best Answer

Instead of "\begin{landscape}...\end{landscape}" try with the tag "\begin{sidewaystable}...\end{sidewaystable}" which comes with the "rotating" package which can help you to fix the issue

Related Question