使用长公式和案例进行自定义对齐

使用长公式和案例进行自定义对齐
\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{align}
    x &= 1 & y &= 233 & z &= 3
    \\
    a &= 4 & c &= 5 & d &= 6
    \\
    & & K &= \begin{cases}
        10+a+b+c+d+e+f & \text{if condition X}
        \\
        -10+a-b+c+d+e+f & \text{otherwise}
    \end{cases} & & 
\end{align}

\end{document}

我得到了什么

在此处输入图片描述

我需要的

在此处输入图片描述

也就是说,在上面的等式中, 必须与 和 对齐,而不要将K =和推cases到右边。y =c =z =d =

答案1

在此处输入图片描述


\documentclass{article}
\usepackage{amsmath}

\begin{document}
\noindent X\dotfill X
\begin{align}
    x &= 1 & y &= 233 & z &= 3\hspace{5cm}
    \\
    a &= 4 & c &= 5 & d &= 6
    \\
    & & K &= \begin{cases}
        10+a+b+c+d+e+f & \text{if condition X}
        \\
        -10+a-b+c+d+e+f & \text{otherwise}
    \end{cases}\hspace{-12cm} & &  
\end{align}

\end{document}

案例后的负空间是任意大的量,以隐藏宽度。第一行中的 5cm 由眼睛选择以留下空间。

相关内容