[Tex/LaTex] Are there alternatives to nicefrac that does not shrink numerator and denominator

math-mode

I want a fraction like nicefrac, but with normal size denominator and numerator. Is there a package for that?

Best Answer

Here is a definition that does not shrink either and that you can modify to your taste:

\documentclass{minimal}

\begin{document}
\def\nicefrac#1#2{%
    \raise.5ex\hbox{#1}%
    \kern-.1em/\kern-.15em%
    \lower.25ex\hbox{#2}}


Here is a nice fraction: $\nicefrac{3}{5}$.        
\end{document}