[Tex/LaTex] Vertical space before and after align environment

alignamsmathspacing

I am wondering if it is possible in LaTeX to generally adjust the spacing before and after math in the align environment from amsmath.

From the Mathmode-guide (by Herbert Voss) I gather that \belowdisplayskip and friends should do the job, but manipulating them doesn't yield any visible results.

Best Answer

It has a pretty clear effect to me:

\hrule
\begin{align}
f(x)&=x
\end{align}
\hrule
\vskip1cm
\belowdisplayskip=0pt
\hrule
\begin{align}
f(x)&=x
\end{align}
\hrule

Can you provide a minimal working example where it doesn't?