[Tex/LaTex] Forcing page number on a page with large figure

floatspage-numberingpositioning

I am using the report class. On one page of my thesis I have a large figure, so LaTeX does not provide a page number as the caption and figure cover the most amount of space.

How can I force a page number to be there, without making the figure or caption smaller? There are margins on the bottom of the page with empty white space so it is not like there is no space on the page at all. Worst case the page number could even be a bit lower than the rest of the pages in the thesis.

Best Answer

The number is overprinted over the image, but may not be visible depending on the colours:

enter image description here

probably the easiest way to move the footline is the geometry package:

enter image description here

\documentclass{article}
\usepackage{graphicx,geometry}
\begin{document}

aaa

bbbb


\begin{figure}[p]
\centering
\includegraphics[height=.9\paperheight]{example-image-9x16}


\end{figure}


\clearpage

\newgeometry{textheight=1.3\textheight}

\begin{figure}[p]
\centering
\includegraphics[height=.9\paperheight]{example-image-9x16}


\end{figure}

\clearpage

\restoregeometry

\end{document}
Related Question