tags:

views:

142

answers:

4

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!

+2  A: 

... \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)

The MYYN
This also prints out at the top of the page.
ssn
+1  A: 

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.)

Seamus
i think there where braces missing
hop
Yes thanks. I expected there to be some errors...
Seamus
+4  A: 
\null
\vfill
bottom here
lhf
I had tested with \vfill also without success. The \null was the key. Thanks.
ssn
A: 

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

Stefan