Possible Duplicate:
Adding vertical space at the start of a page
Basically I am making a title page and I want the title to be in the center of the text
\documentclass[15pts]{article}
\usepackage{amsmath}
\usepackage{parskip}
\textwidth = 500pt
\textheight = 700pt
\voffset = -90pt
\oddsidemargin = -10pt
\begin{document}
\vspace{9000pt}
\begin{center}
\big {Title Page}
\end{center}
\end{document}
And no matter how much I change (...pt), it stays the same.
Note that I do not want to change the formatting of my document because I got other pages to deal with too.
\vspaceis removed at page breaks, and the first page comes, by convention, after a page break.\vspace*isn't removed. However\bigdoesn't change the font size (and will produce an error). – egreg May 13 '12 at 20:37