对齐环境:如何对齐“左列”中的方程式以及对齐“右列”中的条件/单词?

对齐环境:如何对齐“左列”中的方程式以及对齐“右列”中的条件/单词?

我有一个边界条件列表,我想使用对齐环境来显示它。以下是目前的代码:

\begin{equation}
\left.\begin{aligned}
x&=y &\text{in...},\\\
x'&=y'  &\text{in...}, \\\
x''&=y''&\text{in...}, \\\
x'''&=y'''&\text{in....}\\\
\end{aligned}\right\}
\end{equation} 

我希望 LHS 上的方程式在符号处对齐=,但我还希望每个条件 () 的开头in...在 处对齐in。有人知道我该怎么做吗?

答案1

您需要一个额外的选项&来切换对齐方式:

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{equation}
  \left.\begin{aligned}
       x &= y    &&\text{in $a$},               \\
      x' &= y'   &&\text{in $a$, $b$},          \\
     x'' &= y''  &&\text{in $a$, $b$, $c$},     \\
    x''' &= y''' &&\text{in $a$, $b$, $c$, $d$}
  \end{aligned}\right\}
\end{equation}

\end{document}

相关内容