我正在用chemmacros
它来写化学反应,并想将它们的编号方式从{1},{2},{3} .. 更改为[R1],[R2],[R3]。
我尝试了包装上的方法(第 43 页),但不起作用,可能是因为我的版本太旧了(4.6)。这是 MWE
\documentclass[12pt,twoside
]{report}
\usepackage{geometry}
\usepackage[spanish,es-noquoting]{babel}
\usepackage[utf8]{inputenc} %relacionado al input
\usepackage[T1]{fontenc}
\usepackage{chemmacros}
\usepackage{gensymb}
\begin{document}
\begin{reactions}
A + B &<=> C + clus \label{reaccio4} \\
D + clus &<=> F + H \label{reaccionRef3}\\
A + B + D &<=> F + G + H \label{reaccion_neta3}
\end{reactions}
\end{document}
它产生:
有什么帮助吗?
答案1
括\label{...}
在"..."
:
\begin{reactions}
A + B &<=> C + clus "\label{reaccio4}" \\
D + clus &<=> F + H "\label{reaccionRef3}" \\
A + B + D &<=> F + G + H "\label{reaccion_neta3}"
\end{reactions}
chemmacros
使用v5.0 之前的版本
\renewtagform{reaction}{[R}{]}
以改变反应标签的标签形式。