Good evening,
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
Page Layout ⇒ Bottom margin in a single page
Bottom margin in a single page
Last edited by Chaabain on Fri Feb 11, 2011 4:29 pm, edited 3 times in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Bottom margin in a single page
A few more details about what you are after couldn't do any harm. If it's only about getting a bit more text on that page, this is done with a single command at the concerned place.
Note that this actually doesn't touch the bottom margin and may overwrite the content in the footer.
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
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
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Bottom margin in a single page
Thorsten made a couple typos while typing the command. It's \enlargethispage not \enlargthispage, and its argument goes in braces {...} not brackets.
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:
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
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Bottom margin in a single page
This command:
\enlargethispage{4\baselineskip}
perfectly works except that it increases the top margin and I don't want to do that.
\enlargethispage{4\baselineskip}
perfectly works except that it increases the top margin and I don't want to do that.