I want to place the n from the \sqrt[n]{\rho} command in a more visible position and make it bigger too.
MWE:
\sqrt[n]{\rho}
I want to place the n from the \sqrt[n]{\rho} command in a more visible position and make it bigger too.
MWE:
\sqrt[n]{\rho}
Package amsmath defines the \leftroot and \uproot commands to adjust the position of n. By default the size is \scriptscriptstyle. Compare different codes for this:
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[ \sqrt[n]{\rho}\quad \sqrt[\leftroot{-1}\uproot{1}n]{\rho}\quad \sqrt[\leftroot{-1}\uproot{1}\scriptstyle n]{\rho} \]%
\end{document}
The amsmath package provides the commands \uproot and \leftroot to modify the placemet of the root index.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\sqrt[\rho]{n}\ \sqrt[\uproot{2}\leftroot{2}\rho]{n}\ \sqrt[\uproot{2}\leftroot{-1}\rho]{n}$
\end{document}