Page Layout ⇒ Bottom margin in a single page
Bottom margin in a single page
I am a new user of LaTeX. I would like to know how I could change just the bottom margin of a single page without influencing the margins of other pages.
Thank you in advance.
Best Regards,
Chaabain
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Bottom margin in a single page
Code: Select all
\enlargthispage[2\baselineskip] % allow two more lines on current page
If you want to really alter the bottom margin, take a look at the geometry package. It allows to alter the page geometry within the document and restore it later on.
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Bottom margin in a single page
But the thing I really wanted to note is that you can also use a negative value if you wanted to increase the bottom margin on a page:
Code: Select all
\enlargethispage{-2\baselineskip}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Bottom margin in a single page
Oh yes, indeed. Don't know where I had my head.frabjous wrote:Thorsten made a couple typos while typing the command. It's \enlargethispage not \enlargthispage, and its argument goes in braces {...} not brackets. […]
Code: Select all
\enlargethispage{2\baselineskip} % allow two more lines on current page
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Bottom margin in a single page
\enlargethispage{4\baselineskip}
perfectly works except that it increases the top margin and I don't want to do that.