排列和化学式

排列和化学式

我想以 Latex 为例来写这个:

Anode:                    H2 -> 2H+ + 2e-

Cathode:   0.5O2 + 2e- + 2H+ -> H2O

它不起作用。要么是阳极和阴极没有对齐,要么是反应方程式被破坏了。我尝试了很多次,但没有找到一个好的解决方案。这就是我的情况,两种情况:

\begin{flalign}
\text{Anode:}~ \ce{3O2- &-> 1.5O2 + 6e-} \\
\text{Cathode:}~ \ce{N2 +  3H2O + 6e- &-> 2NH3 + 3O2-}
\end{flalign}`


\begin{flalign}
  &\text{Anode:}~ \centering \ce{3O2- &-> 1.5O2 + 6e-} \\
  &\text{Cathode:}~ \centering \ce{N2 +  3H2O + 6e- &-> 2NH3 + 3O2-}
\end{flalign}

有人能帮帮我吗。

答案1

请确保您在将来提供完全可编译的代码示例,这样我们就不必猜测您正在使用什么包。

因为flalign你需要更多的对齐点,但我建议alignat距离不要太大。我认为没有理由用左边距对齐“阳极”和“阴极”。

\documentclass{article}
\usepackage{amsmath}
\usepackage[version=4]{mhchem}

\usepackage{lipsum} % for context

\begin{document}

\lipsum[1][1-4]
\begin{flalign}
&\text{Anode:}   & \ce{3O2-             &-> 1.5O2 + 6e-} & \\
&\text{Cathode:} & \ce{N2 +  3H2O + 6e- &-> 2NH3 + 3O2-} &
\end{flalign}
\lipsum[2][1-4]

\lipsum[1][1-4]
\begin{alignat}{2}
&\text{Anode:}   &\qquad \ce{3O2-             &-> 1.5O2 + 6e-} \\
&\text{Cathode:} &\qquad \ce{N2 +  3H2O + 6e- &-> 2NH3 + 3O2-}
\end{alignat}
\lipsum[2][1-4]

\end{document}

在此处输入图片描述

相关内容