[Tex/LaTex] Make equation look nicer

amsmathmath-mode

I have an equation which has a fraction to the power of another fraction. The fraction in the power is really small. I tried using \cfrac to change the size of that fraction but then the constant and exponential at the start of the equation became too small compared to the rest of the equation.

enter image description here

What is the best way to make this equation look good? Here is a MWE.

\documentclass{article}

\usepackage{amsmath}
\usepackage{geometry}

\begin{document} 

\begin{equation}
\rho(T) = \rho_{0}\exp\left[\left(\frac{T_{0}}{T}\right)^{\frac{1}{d+1}}\right]
\end{equation}

\end{document}

Best Answer

A larger size for the exponent can be used, e.g. via \tfrac. Or the fraction expression can be written with a slash:

\documentclass{article}

\usepackage{amsmath}
\usepackage{geometry}

\begin{document}

\begin{equation}
\rho(T) =
\rho_{0}\exp\left[\left(\frac{T_{0}}{T}\right)^{\tfrac{1}{d+1}}\right]
\end{equation}
\begin{equation}
\rho(T) =
\rho_{0}\exp\left[\left(\frac{T_{0}}{T}\right)^{1/(d+1)}\right]
\end{equation}

\end{document}

Result