[Tex/LaTex] Vertical spacing between numerator and division symbol in \dfrac

fractionsspacing

How can I fix the vertical spacing between the numerator and the division symbol when entering fractions.

Eg. in the following code, the spacing between a and the division symbol is greater than one between b and the next (lower) division symbol.

\[ x = \dfrac{\dfrac{a}{b}}{c} \]

Best Answer

Playing with math styles:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\[ x
  = \dfrac{\dfrac{a}{b}}{c}
  = \dfrac{\frac{\textstyle a}{\textstyle b}}{c}
  = \dfrac{\frac{a}{b}}{c}
  \equiv \dfrac{\tfrac{a}{b}}{c}
\]
\end{document}

Result

Related Question