Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want an empty page with two sentences at the bottom of it. I've tried the following without success:

\thispagestyle{empty}
\begin{flushbottom}

\begin{center}
© 2010\\
All Rights Reserved.
\end{center}
\end{flushbottom}

The text appears at the top of the page. Thanks in advance for your comments!

share|improve this question
The are some errors when using the fancyhdr while using some other pagestyle. – user1243513 Mar 1 '12 at 19:15

4 Answers

up vote 23 down vote accepted
\null
\vfill
bottom here
share|improve this answer
I had tested with \vfill also without success. The \null was the key. Thanks. – ssn Jul 23 '10 at 14:23

Instead of \null\vfill you could use \vspace*{\fill}.

share|improve this answer

... \hfill and \vfill, which cause LaTeX to create as much horizontal or vertical space as possible (within the boundaries of a page as defined in the preamble).

Not tested, though:

\null
\vfill
\begin{center}
    © 2010\\
    All Rights Reserved.
\end{center}

TEX has a \null command, which is shorthand for an empty horizontal box ...

(http://www.tug.org/TUGboat/Articles/tb26-3/tb84glister.pdf)

share|improve this answer
This also prints out at the top of the page. – ssn Jul 23 '10 at 14:26

You could do it with the fancyhdr package.

\usepackage{fancyhdr}
\fancypagestyle{copyrightinfo} { %
\fancyfoot[C]{\copyright{} 2010 \\ All rights reserved}
\renewcommand{\headrulewidth}{0pt}}

And then, on the first/last page (wherever you want the copyright warning to appear, put \thispagestyle{copyrightinfo}

(edit: added the headrulewidth line, because otherwise it puts a line above the main text.)

share|improve this answer
1  
i think there where braces missing – hop Jul 23 '10 at 14:26
Yes thanks. I expected there to be some errors... – Seamus Jul 23 '10 at 15:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.