If I use an an align environment within the a beamer block, the \abovedisplayskip is ignored. How can I force that setting?
My MWE is
\documentclass[t]{beamer}
\usecolortheme{rose}
\usepackage{amsmath}
\begin{document}
\abovedisplayskip=0pt
\begin{frame}
\begin{block}{Some Block}
\begin{align} %does not have 0pt abovedisplayskip
e^x &= \sum_{k=1}^\infty \frac{x^k}{k!}
\end{align}
\end{block}
\begin{block}{Some other Block}
text
\begin{align} %abovedisplayskip works after text line
e &= \lim_{n\to\infty} \left(1+\frac1n\right)^n
\end{align}
\end{block}
\end{frame}
\end{document}

\nointerlineskip\begin{align}. But there will still be space after. And this is not nice with the beamer background color. – May 24 '14 at 22:13\belowdisplayskip=0ptwill get rid of it. – May 24 '14 at 22:15\nointerlineskipto the block definition. Apparentlybeamerdoes that for the frametitle already. – papabravo May 24 '14 at 23:06