[Tex/LaTex] Numbers are very small in numerator and denominator using \frac

fractionsmath-mode

When I use the \frac command, I notice that the characters used for the fraction terms become smaller than those which are not in the \frac command. Is there a way to correct it?

Best Answer

A larger (nicer?) version of the fraction can be obtained with \dfrac.

\documentclass{article}

\usepackage{mathtools}
\begin{document}



\begin{align}
\gamma &= \frac{1}{\sqrt{1-\frac{v^2}{c^2}}} \\
 & \notag \\
\gamma &= \dfrac{1}{\sqrt{1-\dfrac{v^2}{c^2}}}
\end{align}



\end{document}

enter image description here