使用一个标签将多个方程式左对齐

使用一个标签将多个方程式左对齐

我使用 flalign 对两个方程式进行左对齐,但我还想为它们提供一个标签,我找到了 split 环境。但它们无法协同工作。问题是如何对齐两个方程式的左对齐但为它们提供一个共同的标签?

答案1

问题尚不清楚,您是指以下主题变体之一吗?

\documentclass{article}
\usepackage{amsmath}

\begin{document}
  \hrule
  \begin{flalign}
    \begin{gathered}
      \text{First equation.}\hfill\\
      \text{Second equation.}
    \end{gathered}
    &&
  \end{flalign}
  \hrule
  \begin{flalign}
    \begin{gathered}
      \text{Bla} \\
      \text{Centered}
    \end{gathered}
    &&
  \end{flalign}
  \hrule
  \begin{flalign}
    \begin{aligned}
      1 + 2 &= 3 \\
      4 &= 2^2 * 2^0
    \end{aligned}
    &&
  \end{flalign}
  \hrule
\end{document}

结果

更新了信息的变化。第一种情况将所有内容放在左侧,第二种情况更复杂,它将方程式放在中间,但将文本放在左侧:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\hrule
\begin{flalign}
  \begin{aligned}
    \text{or}\quad f &= m \frac{dv}{dt};\\
    \text{or}\quad f &= m \frac{d^2y}{dt^2};
  \end{aligned}
  &&
\end{flalign}
\hrule
\begin{flalign}
  \begin{gathered}
    \rlap{or}\vphantom{\frac{dv}{dt}} \\
    \rlap{or}\vphantom{\frac{d^2y}{dt^2}}
  \end{gathered}
  &&
  \begin{aligned}
    f &= m \frac{dv}{dt};\\
    f &= m \frac{d^2y}{dt^2};
  \end{aligned}
  &&
\end{flalign}
\hrule
\end{document}

结果

相关内容