Starting from this old this question
How to make fractions in powers look good, I'm searching a optimal solution to aesthetically define a fraction of the type \frac{...}{...}. For my book I've used the 2nd formula as in the image (green line),
but I'm not very happy about the results.
(a) Meanwhile I would like to understand if there is any minimal difference between the second and fifth formula.
(b) After, I'd like to know how to build the smallest power ^{-\frac{3}{2}} in size and aesthetically more beautiful and that it's higher left near the round bracket ). In fact if you look carefully this fraction is almost close to the next x.
Here there is my MWE. Thank you.
\documentclass[12pt]{article}
\usepackage{newtxtext,mathtools}
%\usepackage{newtxmath}
\usepackage[lite]{mtpro2}
\usepackage{xfrac}
\usepackage[ugly]{nicefrac}
\begin{document}
\begin{equation}
f(x)=(1+x)^{-3/2} x+\cdots
\end{equation}
\begin{equation}
f(x)=(1+x)^{-\frac32} x+\cdots
\end{equation}
\begin{equation}
f(x)=(1+x)^{-\tfrac 32} x+\cdots
\end{equation}
\begin{equation}
f(x)=(1+x)^{-\sfrac 32} x+\cdots %https://tex.stackexchange.com/questions/202325/how-to-make-fractions-in-powers-look-good
\end{equation}
\begin{equation}
f(x)=(1+x)^{-\nicefrac{3}{2}} x+\cdots %https://tex.stackexchange.com/questions/202325/how-to-make-fractions-in-powers-look-good
\end{equation}
\end{document}


\frac{1}{\sqrt{(1+x)^3)}}I'd use (2) – David Carlisle Apr 15 '19 at 12:39nicefracwith theuglyoption. – campa Apr 15 '19 at 13:55\newcommand\myfrac[3][]{\mkern-2mu#1\frac{#2}{#3}\rule[-6pt]{0pt}{0pt}}, with usage off(x)=(1+x)^{\myfrac[-]32} x+\cdots. You can tailor the dimensions2muand6ptin the definition. – Steven B. Segletes Apr 15 '19 at 16:47