[Tex/LaTex] Add space at the beginning of the page

spacing

I need a command (and a package) that add empty space at the beginning of the page.
Something like vspace{} or vspace*{}

Best Answer

A combination of \vspace and \vspace* can be used:

\vspace{-50mm}
\vspace*{50mm}
Object

At the begin of a new page, the first \vspace{...} is automatically removed and the second \vspace*{...} stays. In the middle of the page, the spaces sum up to zero.

Related Question