For example, in a default document...
\documentclass{article}
\usepackage{blindtext}
\pagenumbering{gobble}
\begin{document}
\blindtext
\blindtext
\blindtext
\blindtext
\blindtext
\end{document}
...the space between the text and the bottom of the page is significantly larger than the space between the text and the top of the page. (on the first page in this example).
This makes sense when the page number is there, but removing the page number does not extend the text further down the page, and the space is the same size as it would be if the page number were there.
Other ways of removing the page number, like this...
\thispagestyle{empty}
...or this...
\usepackage{nopageno}
...have the same result.
I know I can specify custom margins with geometry
that ignore the page number,
but is there a way to just remove the space
that the page number used to take up,
so that the bottom is the same size as the top margin?
showframeadded to the above example, there is a line below the main section where the page number would be. What is the line for? How do I stretch the main text down to the line? – ban_javascript Sep 05 '21 at 08:40\advance \textheight by \footsep \setlength{\footsep}{0pt}Except for exam class, which puts the footer below the line instead of above. – John Kormylo Sep 06 '21 at 04:26