答案1
以下解决方案使用flalign
环境以及aligned
第二个方程中的环境......
... 将左侧方程式对齐到最左侧,
... 将
k=1,i>0
-type 条件对齐到最右侧,并且=
... 提供中间行符号右侧两行片段的垂直居中,相对于(a)=
左侧的符号以及k=3,i>1
最右侧的项和方程编号。
\documentclass[12pt]{article} % or some other suitable document class
\usepackage{amssymb,amsmath}
\providecommand\mL{\mathcal{L}} % handy shortcut macro
\begin{document}
\setcounter{equation}{18} % just for this example
\begin{flalign}
x\oplus x &= \mL\oplus\mL\oplus x\oplus x &k=1,i>0 \\
x\oplus x &=
\begin{aligned}
&\mL\oplus\mL\oplus\mL\oplus {} \\
&\quad x\oplus x\oplus x
\end{aligned} & k=3,i>1 \\
x\oplus x &= \mL\oplus\mL\oplus\mL\oplus x\oplus x& k=2
\end{flalign}
\end{document}