Text FormattingFlush to bottom of the page

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
hans.kruger11
Posts: 2
Joined: Tue Oct 13, 2009 5:49 am

Flush to bottom of the page

Post by hans.kruger11 »

I want some specific text to be flushed to the bottom of the page, regardless of the spacing earlier. I don't want to put specific spacing things like vspace etc., as then as the text on the page grows, I'd have to readjust the parameters for vspace. Something like a footnote, but part of the normal text. Is there an easy way to do this?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Flush to bottom of the page

Post by frabjous »

Have you tried the \vfill command?

E.g.:

Code: Select all

\documentclass{article}
\begin{document}
I'm at the top.
\vfill
I'm at the bottom!
\end{document}
hans.kruger11
Posts: 2
Joined: Tue Oct 13, 2009 5:49 am

Re: Flush to bottom of the page

Post by hans.kruger11 »

Thanks! That is exactly what I was looking for.
Post Reply