I learned here that I can use \\[<len>] to explicitly set the vertical skip space between lines, e.g., <len> set to 3ex. I'd like to set <len> to, say, 2-times the normal length in this environment (e.g., align or dcases) but I don't know the length parameter that determines this.
Another example: I'd like to change the explicit 3ex below to some multiple of the vertical line-skip space in the align environment. Does anyone know what that is?
\documentclass{beamer}
\usepackage{amsmath}
\usepackage{mathtools}
\begin{document}
\begin{frame}
Some sample text
\begin{spreadlines}{3ex}
\begin{align*}
\pi(\mu \mid x) &= \frac{\pi(\mu)\,\mathcal{L}(x \mid \mu)}{p(x)} \\
&= \begin{dcases*}
\frac{(1-w)\phi(x)}{p(x)} & for \(\mu=0\) \\
\frac{w\gamma(\mu)\phi(x-\mu)}{p(x)} & for \(\mu \neq 0\).
\end{dcases*}
\end{align*}
\end{spreadlines}
\end{frame}
\end{document}

2\baselineskipinstead of either3exor5\jotshrinks the spacing between thealignenvironment and the text immediately preceding it. I'm doing this in abeamerdocument so that might be driving this result. – lowndrul Oct 26 '11 at 17:12\begin{spreadlines}{\normalbaselineskip}i get no other spacing – Oct 27 '11 at 06:48