\documentclass{amsart}
\begin{document}
$\frac{(n+1)!}{(n+1)^{n+1}}$
\end{document}
The problem is that I want to make (n+1) on the same line. How do I achieve this?
\documentclass{amsart}
\begin{document}
$\frac{(n+1)!}{(n+1)^{n+1}}$
\end{document}
The problem is that I want to make (n+1) on the same line. How do I achieve this?
\hfill can be used to move the nominator to the left:
\documentclass{amsart}
\begin{document}
$\frac{(n+1)!\hfill}{(n+1)^{n+1}}$
\end{document}
\fraccould be redefined. In general, left aligned fractions look quite odd. Also an automatic way would not know, which alignment would get the best output for a particular fraction. – Heiko Oberdiek Jun 12 '15 at 08:50