一行中两个公式

一行中两个公式

我需要将两个公式放在与图片相同的行中。请注意,左侧的一些公式是包含多个项的公式(例如第二个公式有 6 个项)。你能帮我吗?

在此处输入图片描述

答案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}

相关内容