Vertically center text on a page
This is what I found:
\begin{document}
\topskip0pt
\vspace*{\fill}
text
\vspace*{\fill}
%
\end{document}
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]
.
This did the job for me:
\pagebreak
\hspace{0pt}
\vfill
Centered text.
\vfill
\hspace{0pt}
\pagebreak