[Tex/LaTex] Adjust space between displayed equation and the following text

equationsspacing

I often have displayed equations in the middle of a paragraph, so that the following text of the equation does not start on a new line but follows with a space.

In such situations, I would like to know how I can adjust the vertical space between the displayed equation and the following text. I've tried with the usual \vspace{} trick, by putting it just in front of the first word that follows the equation. However, it produces the wrong effect by increasing the vertical space between the first line of text after equation and the second.

Any suggestion? Thanks!

Best Answer

The space is one of the lengths

\belowdisplayskip=12pt plus 3pt minus 9pt
\belowdisplayshortskip=7pt plus 3pt minus 4pt

so you can set those to whatever values you like using the above primitive syntax of \setlength so the first tries to be 12pt but will shrink to 9pt or stretch to 21pt to help page breaking.

Related Question