如何在方程式编号中包含化学反应?

如何在方程式编号中包含化学反应?

我希望我的化学反应为方程式 0.1,方程式 (K_D) 为第二个数字为 0.2 的方程式。

  \documentclass[12pt]{article}
    \usepackage{amsmath}
    \usepackage{chemmacros}

\begin{document}

\begin{align*}
\ch{S + E <>[ $k_{\mathrm{SI}}$ ][ $k_{\mathrm{IS}}$ ] E.I <>[ $k_{\mathrm{PI}}$ ][ $k_{\mathrm{IP}}$ ] P + E}
\begin{align*}

\begin{equation} \label{}
 K_{D} = \frac{[A][B]^{N_{max}}}{[AB_{N_{max}]}} = \frac{k_{off}}{k_{on}}.
\end{equation}

\end{document}

根据 Alex 的建议,我得到了这个:在此处输入图片描述

这是解决方案:

\begin{equation}
  \ch{ A + B -> C + D }
\end{equation}

答案1

在此处输入图片描述您可以使用numberwithin{equation}{section}:

    \documentclass[12pt]{article}
    \usepackage{amsmath}
    \usepackage{chemmacros}
    \begin{document}

    \numberwithin{equation}{section}
    \begin{align}
        \ch{S + E <>[ $k_{\mathrm{SI}}$ ][ $k_{\mathrm{IS}}$ ] E.I <>[                 $k_{\mathrm{PI}}$ ][ $k_{\mathrm{IP}}$ ] P + E}
    \end{align}

    \begin{equation} \label{}
         K_{D} = \frac{[A][B]^{N_{max}}}{[AB_{N_{max}]}} = \frac{k_{off}}        {k_{on}}.
    \end{equation}

    \end{document}

相关内容