答案1
array
是为矩阵和其他值表设计的。它使用\textstyle
和,没有为关系或二元运算符提供正确的间距。您的示例显示了这一点,并且和\sum
的间距为没有空格的一元前缀。-
+
AMS 对齐旨在解决这些问题。另外,避免使用数学斜体字,默认数学字体旨在使相邻字母看起来像 1 个字母变量的乘积。如果您想要斜体,请使用\mathrm
(或)。\mathit
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{alignat*}{3}
&a&&-\mathrm{bold}&&=c\\
&\mathrm{hold}&&+y&&= \sum_{i = 0}^{n - 1} z_i
\end{alignat*}
\end{document}