vote up 1 vote down star

I want to suppress page number in a page where a figure covers the whole page.

\thispagestyle{empty}
\begin{figure}[H]
    \centering
    \fbox{\includegraphics[height=0.95\textheight]{853}}
    \caption{Whole Model Part 1}
    \label{fig:wholemodel}
\end{figure}

I use the command \thispagestyle{empty} as suggested. But this command doesn't work where a figure covers the whole page. Is there any alternative solution?

flag

Have you tried putting it inside the figure environment? Don't know if it works at all. – Boldewyn Nov 4 at 12:45
Yes, I tried all the places. It didn't make any change. – Mert Nuhoglu Nov 4 at 12:46
I put \newpage and \pagebreak before \thispagestyle, but this doesn't make any difference either. – Mert Nuhoglu Nov 4 at 12:52

1 Answer

vote up 2 vote down check

I believe you need the floatpag package. In preamble put:

\usepackage{floatpag}
\floatpagestyle{empty}

\thisfloatpagestyle{} inside a figure/table environment will alter that floatpage's style. Hope that works!

PS: the help shown by "$ texdoc floatpag" appears to be in Polish. Look at the .sty file for usage in English. floatpag.sty on CTAN

link|flag
Thank you. This works: \begin{figure} \floatpagestyle{empty}... – Mert Nuhoglu Nov 5 at 9:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.