我想使用,flalign
这样我就可以在方程式之间放置左对齐的文本。例如
\begin{flalign}
&& f &= ma&\\
\text{Which we may express as} \\
&& f &= m \frac{dv}{dt}
\end{flalign}
但是这为每一行都给出了一个方程编号,包括\text{...}
。
我怎样才能让一个方程编号在渲染结果中居中显示,就像任何其他方程编号一样。
答案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}