I have a fraction in an inline formula as can be seen in the picture.
\dfrac from the amsmath package was used. (This is article class with 14pts and linespread 0.9.)
Though the space between the line including the formula and nearby lines are expanded, the space between the denominator of the fraction and the next line is still smaller than the one between other all-text lines.
How can I expand the space so that equal space is guaranteed? (I don't want to make the fraction part smaller.)
I already tried abovedisplayskip and belowdisplayskip, but they seem to work only in \display environment.
I may find a command that works only for specific lines, but I want this spacing applied to the entire document where there is an inline formula with fractions.


\[...\]? – David Carlisle Feb 6 at 17:19\setlength{\lineskip}{2pt}or something more (default is 1pt). But really such a big object should be in a display. Thearticleclass doesn't have a 14pt option. – egreg Feb 6 at 17:22\dfracfor inline-math fraction expressions; use\tfracinstead. Alternatively, use the "slash" notation, i.e., something like$\Pr\{...\}/\Pr\{...\}$. – Mico Feb 6 at 17:32\fracand\tfracare the same in inline-math (unless they're used inside a fraction ...). – Hendrik Vogt Feb 7 at 20:18\dfracin inline-math shouldn't be used (except maybe in something like one-line exam problems). – Hendrik Vogt Feb 7 at 20:34