我正在尝试对齐两个等式,但它们不是在等号处对齐,而是在等式末尾的逗号处对齐。我该如何改变这种情况?
\begin{align}
A_{ij}^y=
\begin{cases}
1, & \text{if the link between $x_{i,j}$ and $y_{i,j}$ is included},\\
0, & \text{otherwise},
\end{cases} \\
R_{ij} = r_{ij},
\end{align}
感谢您的帮助
答案1
您必须将对齐标记放在&
等号处:
\documentclass[border=5pt,preview]{standalone}
\usepackage{mathtools}
\begin{document}
\begin{align}
A_{ij}^y &=
\begin{cases*}
1, & if the link between $x_{i,j}$ and $y_{i,j}$ is included,\\
0, & otherwise,
\end{cases*}\\
R_{ij} &= r_{ij},
\end{align}
\end{document}
另外,我使用包cases*
中的环境mathtools
来排版案例,因为它在文本模式下排版第二列。