有没有办法$\surd$
通过标准 AMS 包来实现可变大小?例如,我希望$\surd \frac{a}{b}$
看起来像是$\sqrt{\frac{a}{b}}$
左线拉长但没有上划线$\frac{a}{b}$
。
答案1
使用以下定义:
\def\surdex#1{\sqrt{\vphantom{#1}}#1}
和测试:
$$\surdex{\frac{a}{b}}$$
答案2
您可能还希望选择设置根索引;xparse
这相当容易:
\documentclass{article}
\usepackage{xparse}
\NewDocumentCommand{\xroot}{om}{%
\IfNoValueTF{#1}
{\sqrt{\vphantom{#2}}#2}
{\sqrt[#1]{\vphantom{#2}}#2}%
}
\begin{document}
\[
\xroot{\frac{1}{2}}\ne\xroot[3]{(a+b)}
\]
\end{document}
当然,看到这个结果后,我不禁要问自己,为什么一个受人尊敬的机构要改变一个长期受人尊敬的符号。