Possible Duplicate:
Reduce the space between a quotation and a title
I am writing a double-spaced paper using the setspace package. I need quotations to be formatted with single spacing, however. So my paper looks something like:
\documentclass[12pt]{article}
\usepackage{setspace}
\begin{document}
\doublespacing
Double-spaced document body here...
\begin{quote}
\singlespacing
Single-spaced quote text here...
\end{quote}
More double-spaced document body here...
\end{document}
Is there a way I can avoid the \singlespacing command inside the \begin{quote} ... \end{quote} block, so that all such blocks default to single spacing?