amsmath 中的 \smash 命令

amsmath 中的 \smash 命令

amsmath 包重新定义了该\smash命令。在手册中我们可以看到\smash可以使相邻的部首更加一致,例如通过使用

\sqrt{x}+\sqrt{\smash[b]{y}}+\sqrt{z}

输出令人满意: 在此处输入图片描述

但是现在我想打印下面的公式,并且使根式一致。我应该怎么做?

\sqrt{x}+\sqrt{\smash[b]{y}}+\sqrt{z}+\sqrt{h}

上述代码的输出是: 在此处输入图片描述

答案1

获得统一的激进分子有点像是一门暗黑艺术……

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{gather}
\sqrt{x}+\sqrt{y}+\sqrt{z}+\sqrt{h} \\
\sqrt{x}+\sqrt{\smash[b]{y}}+\sqrt{z}+\sqrt{h} \\
\sqrt{x\mathstrut}+\sqrt{y\mathstrut}+\sqrt{z\mathstrut}+\sqrt{h\mathstrut} \\
\sqrt{x\vphantom{h}}
  +\sqrt{\smash{y}\vphantom{h}}\vphantom{y}
  +\sqrt{z\vphantom{h}}
  +\sqrt{h\vphantom{h}}
\end{gather}

\end{document}

(1)不行;(2)还可以;(3)部首太大。

在此处输入图片描述

相关内容