
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}