使用化学公式进行反应编号

使用化学公式进行反应编号

有人可以指导我在使用chemformula包时如何将反应编号与方程编号分开来编号吗?

答案1

\documentclass{article}

\usepackage{chemmacros} % uses chemformula as default
\usechemmodule{reactions}
%\chemsetup[reactions]{before-tag = R} % if you want it

\begin{document}
    \begin{equation}
    a=b
    \end{equation}

    \begin{reactions}
        A -> B \\
        C ->D
    \end{reactions}

    \begin{align}
    c=d \\
    e = f
    \end{align}

    \begin{reaction}
        E -> F
    \end{reaction}
\end{document}

相关内容