Wie beschriftet man nur die zweite, dritte und sechste Zeile mit 1, 2, 3?
Der Pfeil mit dem Katalysator in der ersten Zeile ist etwas länger als die anderen. Wie kann ich die anderen verlängern oder kürzer machen?
Wie beschriftet man die zweite und dritte Zeile mit A und die vierte, fünfte und sechste mit 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*}
Antwort1
Wechseln Sie für das erste Ziel von einer align*
zu einer align
Umgebung und verwenden Sie \notag
Anweisungen in den Zeilen 1, 4 und 5.
Laden Sie für das zweite das mathtools
Paket und ersetzen Sie es ->[Ce3+]
durch & ->[$\mathclap{\ce{Ce3+}}$]
.
Für die dritte verwenden Sie einfach zwei zusätzliche implizite Spalten und fügen je nach Bedarf Direktiven \textnormal{(A)}
ein .\textnormal{(B)}
Und ersetzen Sie \mathrm{A:}
durch \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}
Antwort2
Mit flalign*
und :\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}