[Tex/LaTex] Vertically center text on a page

vertical alignment

How do I vertically center the text on a page?

Best Answer

The memoir document class provides, among a lot of other excellent things, the vplace environment.

Try:

\documentclass{memoir}
\begin{document}
\begin{vplace}[0.7]
This is some text to be centered vertically.
\end{vplace}
\end{document}

[0.7] is an optional parameter specifying the ratio of space above to space below. The default value is [1].