将等式与等号对齐

将等式与等号对齐

我正在尝试对齐两个等式,但它们不是在等号处对齐,而是在等式末尾的逗号处对齐。我该如何改变这种情况?

\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来排版案例,因为它在文本模式下排版第二列。

在此处输入图片描述

答案2

您需要&对齐说明符,如在案例环境中一样:

\documentclass{article}
\usepackage{mathtools}

\begin{document}
\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}

\end{document}

在此处输入图片描述

相关内容