I want to suppress page numbering on pages with tables which span over the entire page. I tried to do so by putting a \thispagestyle{empty} before the table but occasionally the command is applied to the previous page. When I put it after the table, the command is applied to the subsequent page. With some tables this seems to work while with others I encounter this problem. Is there any better way to suppress page numbering on exactly the page where the table is located. I assume that this has to do with the float.
The code goes like this:
\thispagestyle{empty}
\begin{table}[htp]
\centering
\footnotesize
\scalebox{0.8}{
\centering\makebox[0pt][c]{%
\begin{tabular}{lrrrrrrrrrrrr}
r&r&r&r&r&r&r&r&r&r&r&r&r\\
\end{tabular}
}
}
\caption{Descriptive Statistics}
\label{tab_desc_stat01}
\end{table}
\documentclass{...}and ending with\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to help you. Help them help you: remove that one hurdle between you and a solution to your problem. – Martin Schröder Dec 04 '13 at 18:27tableshould go on a page by itself, you should use[p](or[p!]) instead of[htp]as the location indicator. A\thispagestyle{empty}instruction inside thetableenvironment should then do the job. – Mico Dec 04 '13 at 19:58