Text Formatting ⇒ Flush to bottom of the page
-
- Posts: 2
- Joined: Tue Oct 13, 2009 5:49 am
Flush to bottom of the page
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?
NEW: TikZ book now 40% off at Amazon.com for a short time.
Flush to bottom of the page
Have you tried the \vfill command?
E.g.:
E.g.:
Code: Select all
\documentclass{article}
\begin{document}
I'm at the top.
\vfill
I'm at the bottom!
\end{document}
-
- Posts: 2
- Joined: Tue Oct 13, 2009 5:49 am
Re: Flush to bottom of the page
Thanks! That is exactly what I was looking for.