複数の式をひとまとめして、副番号をつける subequations 環境というものがある。
\begin{subequations}
\begin{align}
& \frac{\D x}{\D t}=f(t,x) \\
& x(0)=x_0
\end{align}
\end{subequations}
|
![]() |
\numberwithin{equation}{section}
|
例えば、jarticle クラスで、 \numberwithin{equation}{section} と同じことをするには
\renewcommand{\theequation}{\thesection.\arabic{equation}}
\makeatletter
\@addtoreset{equation}{section}
\makeatother
|