当我取p
th 根时, 的底部p
非常接近\sqrt
符号。在 New Century Schoolbook 字体(我正在使用)中, 实际上与符号p
相交\sqrt
,这看起来更糟糕。有没有一种干净的方法来解决这个问题?
\documentclass{article}
\usepackage{fouriernc} % use the New Century Schoolbook font
\begin{document}
When I write $a^{(1/p)}$ as $\sqrt[p]{a}$, the bottom of the $p$
touches the top of the root symbol, which looks ugly.
Even when the root symbol is larger, such as with
$\sqrt[p]{\frac{1}{n}}$, it still looks bad
(since the tail of the p almost hits that line).
\end{document}
答案1
amsmath 包提供了调整 p 位置的命令,此示例来自 amsmath 文档:
\sqrt[\leftroot{-2}\uproot{2}\beta]{k}
答案2
按照@DavidCarlisle 的建议他的回答,我还建议您加载该包并对宏的和选项amsmath
进行一些试验。\leftroot
\uproot
\sqrt
事实上,由于您的根符号,具有比 amsmath 包的用户指南的示例代码中使用的符号 p
更长的左下角支线和更小的整体高度,您可能希望使用而不是作为和的参数,以获得更平衡的表达式。\beta
3
2
\leftroot
\uproot
\documentclass{article}
\usepackage{fouriernc} % New Century Schoolbook text and math font clones
\usepackage{amsmath}
\begin{document}
$\begin{array}{cc}
\sqrt[p]{a} & \sqrt[\leftroot{-3}\uproot{3}p]{a} \\[2ex]
\sqrt[p]{\frac{1}{n}} & \sqrt[\leftroot{-3}\uproot{3}p]{\frac{1}{n}}
\end{array}$
\end{document}