[Tex/LaTex] How to move the footer margin closer to the bottom, manually

footnotesheader-footermargins

I have a page built in latex that has a footnote. I am not happy with the distance from the bottom to the footnote: it is too large. I want to have a bigger place to write, so I want the footnote to be close to the bottom.

Also, I want to do this "manually", similar to the way that I did with the top distance:

\addtolength{\topmargin}{-.875in}

Thanks!

Best Answer

If for any reason you don't want to use the geometry package, something like

\addtolength{\textheight}{15pt}

should do what you want.

Increase (or decrease) the 15pt value to meet your needs.

Related Question