我希望我的化学反应为方程式 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}
这是解决方案:
\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}