Text FormattingText at the bottom of the page

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Text at the bottom of the page

Post by coachbennett1981 »

I am writing a book and I need to put the ISBN number, and some things at the bottom of a page. Currently, I am using an \input{copyright} to try to put it at the bottom. Here is the file code for the copyright.tex file:

Code: Select all

\thispagestyle{empty}

\vspace{2in}
\begin{figure}[!b]
\begin{center}
Copyright \copyright\; 2011 Dan Eiblum\\
All rights reserved\\

ISBN: 978-1-4610-9314-5\\
\textbf{Library of Congress Control Number: 2011905974}
\end{center}
\end{figure}

Is there a way to get the text at the very bottom of the page?

Thanks

Nick
Last edited by coachbennett1981 on Tue Jun 07, 2011 6:43 pm, edited 1 time in total.

Recommended reading 2024:

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

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

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Text at the bottom of the page

Post by Stefan Kottwitz »

Hi Nick,

you don't need a figure environment, since you dont't need floating or caption.

Push the text down by inserting \vfill or \vspace*{\fill}:

Code: Select all

\thispagestyle{empty}
\vfill
\begin{center}
Copyright \copyright\; 2011 Dan Eiblum\\
All rights reserved\\

ISBN: 978-1-4610-9314-5\\
\textbf{Library of Congress Control Number: 2011905974}
\end{center}
Further, you could use \centering instead of a center environment.

Stefan
LaTeX.org admin
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Re: Text at the bottom of the page

Post by coachbennett1981 »

Thank you for the help, however, I still have the text at the top of the page. Since this is a book, would it be because of what is in my preamble?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Text at the bottom of the page

Post by Stefan Kottwitz »

Try

Code: Select all

\vspace*{\fill}
before the text.

Stefan
LaTeX.org admin
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Re: Text at the bottom of the page

Post by coachbennett1981 »

Thanks dude, worked perfectly!
Post Reply