在對齊環境中使用\cee
命令(來自 mhchem 套件)時,\\[10pt]
不起作用。它可以在沒有\cee
.有解決方法嗎?
這是一個 MWE:
\documentclass{article}
\usepackage{amsmath}
\usepackage{mhchem}
%with \cee command
\begin{document}
\begin{align}
\cee{
A &-> B \\[10pt] %"[10pt]" is printed, no vertical adjustment
A &-> B
}
\end{align}
%without \cee command
\begin{align}
A &\rightarrow B \\[10pt] %vertical adjustment works
A &\rightarrow B
\end{align}
\end{document}
印刷:
答案1
編輯:mhchem 版本 3.16 包括如下所示的修復。更新將在幾天後發布。
(這個重新定義需要目前版本的mhchem,而不是texlive 2012中的版本)
\documentclass{article}
\usepackage{amsmath}
\usepackage{mhchem}
\makeatletter
\def\mhchem@cee@i#1\\#2#3\mhchem@ENDEND{%
\ifx\mhchem@END#2%
\mhchem@cee@ii#1&\mhchem@END\mhchem@ENDEND%
\else%
\mhchem@cee@ii#1&\mhchem@END\mhchem@ENDEND%
\g@addto@macro\mhchem@ce@out{\\}%
\@ifnextchar[\mhchem@cee@ibrk
\mhchem@cee@i#2#3\mhchem@ENDEND%
\fi%
}
\def\mhchem@cee@ibrk[#1]{%
\g@addto@macro\mhchem@ce@out{[#1]}\mhchem@cee@i}
\makeatother
%with \cee command
\begin{document}
\begin{align}
\cee{
A &-> B \\[10pt] %"[10pt]" is printed, no vertical adjustment
A &-> B
}
\end{align}
%without \cee command
\begin{align}
A &\rightarrow B \\[10pt] %vertical adjustment works
A &\rightarrow B
\end{align}
\end{document}