I have a large table that uses up the whole space on a page. Unfortunately, the table also covers the page number, which is shining through. I don't want to split the table across two pages, hence I want to suppress the page numbering for this single page. Here's my table source code:
\begin{table}
\myfloatalign
\begin{tabular}[t]{rrrrr}
% lots
% of
% rows
\end{tabular}
\end{table}
I tried to place a \thispagestyle{empty} right before the table, directly after the table and in various other places, but without success.
How do I suppress the page number of the page that contains the table?