Double-spacing seems to mess up the vertical spacing inside of arrays. For example, the braces below extend too high. Is there a way to have the array contents centered vertically within the braces?
\documentclass{article}
\usepackage[doublespacing]{setspace}
\begin{document}
$\left\{ \begin{array}{c} abcde \\ abcde \end{array} \right\}$
\end{document}

The problem gets more obvious as the line spacing increases. For example, compare the space above the first line with the space below the second one:
\documentclass{article}
\begin{document}
\renewcommand\arraystretch{3}
$\left\{\begin{array}{c} abcde \\ abcde \end{array} \right\}$
\end{document}



\renewcommand\arraystretch{1.5}makes the underlying problem more apparent. – Noah Dec 16 '12 at 20:54\strutan invisible rule, so there is enough space above the baseline of each row for a construct such as (A) with a bracketed capital, and your example has just lower case. – David Carlisle Dec 16 '12 at 21:12Is there a simple way to decrease the space above the array lines without affecting the space below? The best I've come up with is raising each line with
– Noah Dec 17 '12 at 01:25\raisebox.