I would like to typeset a fairly complicated fraction in display style surrounded by paragraph text. Here's an MWE.
\documentclass{memoir}
\usepackage{libertine}
\usepackage[libertine]{newtxmath}
\usepackage{lipsum}
\usepackage{amsmath}
\begin{document}
The quick brown fox jummped over the lazy dog.
\(m = \dfrac{\left(\dfrac{r}{1,200}\right)\left(1 + \dfrac{r}{1,200}\right)^N}{\left(1 + \dfrac{r}{1,200}\right)^N - 1}P\)
The quick brown fox jumped over the lazy dog.
This line has the correct leading.
\end{document}
Notice that the leading immediately before and after the fraction is a bit tight, e.g. underneath the “p” of the first line. I can't change this line to an environment such as AMS's align, and I'm not willing to use tfracs. Is there a way to make LaTeX compensate for leading around a huge fration?



equation*environment, why not? – egreg Sep 09 '15 at 22:17