如何只用 1、2、3 标记第二、三、六行?
第一行带有催化剂的箭头比其他箭头长一点。我怎样才能延长其他箭头或使其变短?
如何将第二行和第三行标记为 A,将第四行、第五行和第六行标记为 B?
\begin{align*}
\ce{3H+ + 3BrO3^- + 5CH2(COOH)2 & ->[Ce3+] 3BrCH(COOH)2 + 4CO2 + 5H2O + 2HCOOH}\\
\mathrm{A:} \ce{Br- + BrO3^- + 2H+ & -> HBrO2 + HBrO}\\
\ce{Br- + HBrO2 + H+ & -> 2HBrO}\\
\mathrm{B:}\ce{Br- + BrO3^- + 2H+ & -> HBrO2 + HBrO}\\
\ce{BrO2. + Ce3+ H+ & -> HBrO2 + Ce4+}\\
\ce{2HBrO2 &-> BrO3- + H+ +HBrO}
\end{align*}
答案1
对于第一个目标,从一个环境更改align*
为一个环境,并在第 1、4 和 5 行align
使用指令。\notag
对于第二个,加载mathtools
包并替换->[Ce3+]
为& ->[$\mathclap{\ce{Ce3+}}$]
。
对于第三个,只需使用两个额外的隐式列并插入\textnormal{(A)}
和\textnormal{(B)}
指令。
并将其替换\mathrm{A:}
为\textnormal{A}\colon
。
\documentclass{article}
\usepackage{mathtools,mhchem}
\usepackage[a4paper,margin=2.5cm]{geometry} % set page size parameters appropriately
\begin{document}
\begin{align}
&&\ce{3H+ + 3BrO3^- + 5CH2(COOH)2
& ->[$\mathclap{\ce{Ce3+}}$]
3BrCH(COOH)2 + 4CO2 + 5H2O + 2HCOOH} \notag\\
\textnormal{(A)}&&
\textnormal{A}\colon \ce{Br- + BrO3^- + 2H+
& -> HBrO2 + HBrO}\\
\textnormal{(A)}&&
\ce{Br- + HBrO2 + H+
& -> 2HBrO}\\
\textnormal{(B)}&&
\textnormal{B}\colon \ce{Br- + BrO3^- + 2H+
& -> HBrO2 + HBrO} \notag\\
\textnormal{(B)}&&
\ce{BrO2. + Ce3+ H+
& -> HBrO2 + Ce4+} \notag\\
\textnormal{(B)}&&
\ce{2HBrO2
&-> BrO3- + H+ +HBrO}
\end{align}
\end{document}
答案2
使用flalign*
和:\phantom
\notag
\documentclass{article}
\usepackage{geometry}
\usepackage{mathtools}
\usepackage[version=4]{mhchem}
\begin{document}
\begin{flalign*}
& & \ce{3H+ + 3BrO3^- + 5CH2(COOH)2 & ->[Ce3+] 3BrCH(COOH)2 + 4CO2 + 5H2O + 2HCOOH}\notag\\
& (\mathrm A) & \mathrm{A}\colon \ce{Br- + BrO3^- + 2H+ & ->[\phantom{Ce3+}] HBrO2 + HBrO}}\label{eq-1}\\
& (\mathrm A) & \ce{Br- + HBrO2 + H+ & ->[\phantom{Ce3+}] 2HBrO}\label{eq-2}\\
& (\mathrm B) & \mathrm{B}\colon \ce{Br- + BrO3^- + 2H+ & ->[\phantom{Ce3+}] HBrO2 + HBrO}\notag\\
& (\mathrm B) & \ce{BrO2. + Ce3+ H+ & ->[\phantom{Ce3+}] HBrO2 + Ce4+}\notag\\
& (\mathrm B) & \ce{2HBrO2 &->[\phantom{Ce3+}] BrO3- + H+ +HBrO}*\label{eq-3}
\end{flalign*}
\end{document}