Can you help me to remove header from the page where is only one big picture? I tried \thispagestyle{empty} but it removes a header on the next or previous page. I don't know how to remove it exactly from the page only with the picture.
I put this picture in my document by using {sidewaysfigure} environment and \includegraphics in it.
Here is my MWE
\documentclass{book}
\usepackage[demo]{graphicx}
\usepackage[
centering,
top=12mm,
headheight=14pt,
headsep=11pt,
includeheadfoot,
papersize={160mm,235mm},
text={125mm,190.7mm},
]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\newcommand{\TheAuthor}{}
\newcommand{\Author}[1]{\renewcommand{\TheAuthor}{#1}}
\rhead{\small\TheAuthor}
\newcommand{\TheTitle}{}
\newcommand{\Title}[1]{\renewcommand{\TheTitle}{#1}}
\lhead{\small\normalfont\TheTitle}
\fancyfoot{}
\fancyhead[RO,LE]{\thepage}
\usepackage{lipsum}
\usepackage{rotating}
\begin{document}
\lipsum
\begin{sidewaysfigure}
\centering
\fbox{\includegraphics[width=190mm]{pic.jpg}}
\caption*{\footnotesize\centering{Pic. 1}}
\end{sidewaysfigure}
\lipsum
\end{document}
\thispagestyle{empty}inside the float evironment work? – Seamus Mar 13 '11 at 12:46\iffloatpageas part of your header definitions. For example (using your MWE):\rhead{\iffloatpage{}{\small\TheAuthor}}– lockstep Mar 13 '11 at 13:33