\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 由眼睛选择以留下空间。