我的标签如下:
\documentclass{book}
\usepackage{amsmath}
\begin{document}
\begin{align}
a+b&=c\\
d+e&=f
\end{align}
\end{document}
在此,我需要将两个方程之间的间距固定为 20pts。是否可以在整个过程中修复这个问题?请提供建议...
答案1
您可以使用\\[2ex]
或\\[4ex]
等...或者,如果您想设置文档的特定部分(如第二个等式所示)。另一种方法是取消注释第 3 行,这样您就有空间更改整个文档。
\documentclass{book}
\usepackage{amsmath}
%\setlength{\jot}{4ex} % Uncomment if you want
% the spacing to change
% throughout all the document.
\begin{document}
Normal \verb|\jot|:
\begin{align}
a+b&=c\\
d+e&=f
\end{align}
Tampered \verb|\jot| for a specific part:
{\setlength{\jot}{4ex}% Need this!
\begin{align}
a+b&=c\\
d+e&=f
\end{align}
}
Normal \verb|\jot|:
\begin{align}
a+b&=c\\
d+e&=f
\end{align}
\end{document}