flalign環境で1つの中心方程式番号を持つ

flalign環境で1つの中心方程式番号を持つ

を使っflalignて、数式の間に左揃えのテキストを配置したいです。例えば

\begin{flalign}
    && f &= ma&\\
    \text{Which we may express as} \\
    && f &= m \frac{dv}{dt}
\end{flalign}

ただし、これにより、 を含むすべての行に方程式番号が与えられます\text{...}

他の方程式番号と同様に、レンダリングされた結果に対して 1 つの方程式番号を中央に表示するにはどうすればよいですか。

答え1

\documentclass{article}
\usepackage{amsmath} 

\begin{document}
\begin{flalign}
    && f &= ma&             \notag  \\
\text{Which we may express as}      \\
    && f &= m \frac{dv}{dt} \notag
\end{flalign}

\bigskip\noindent%
You may consider the following solution:
\begin{subequations}\label{eq:sys}
    \begin{align}
f &= ma                             \\
\intertext{Which we may express as}
f &= m \frac{dv}{dt}         
\end{align}
\end{subequations}
\end{document}

ここに画像の説明を入力してください

関連情報