How do i center a quote, vertically and horizontally in latex?

matskn picture matskn · May 31, 2010 · Viewed 31.1k times · Source

I have a quote on a blank page in latex. I have managed to center it horizontally, however, when i try to center it vertically it gives me some problems. I have tried

\vspace{}
\begin{quote}
\centering
quote
\end{quote}

However it doesnt work.

Answer

In silico picture In silico · May 31, 2010

Try this:

\vspace*{\fill} 
\begin{quote} 
\centering 
quote 
\end{quote}
\vspace*{\fill}