可能重复:
好看的 p 次根
在 math.stackexchange 上,我想要显示模式下的分数立方根,并且曾经 $$\sqrt[3]{\frac ab}$$
得到过。3 在根号上非常小而且很低。我也想过,$$^3\sqrt{\frac ab}$$
但是 3 太靠左边了。
答案1
您可以使用包中的\leftroot
(用于水平移动)和/或\uproot
(用于垂直移动)amsmath
;使用\scriptstyle
可以增加索引的大小(不确定这是否是个好主意);最好使用上标而不是根:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\sqrt[3]{\frac{a}{b}}\qquad \sqrt[\leftroot{-1}\uproot{2}\scriptstyle 3]{\frac{a}{b}}\qquad
\Bigl(\frac{a}{b}\Bigr)^{1/3}
\]
\end{document}