views:

85

answers:

1

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.

+2  A: 

Try this:

\vspace*{\fill} 
\begin{quote} 
\centering 
quote 
\end{quote}
\vspace*{\fill}
In silico
Thnx! Works very well.
matskn
No problem. Don't forget to upvote/accept answers if you found them to be useful. :-)
In silico