在LaTeX中,可以使用\setlength
命令来调整不同章节标签在方程列表中的垂直间距。以下是一个示例代码:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\setlength{\abovedisplayskip}{10pt} % 设置章节标签之前的垂直间距
\setlength{\belowdisplayskip}{10pt} % 设置章节标签之后的垂直间距
\section{Section 1}
Some text.
\begin{equation}
E=mc^2
\end{equation}
\section{Section 2}
Some text.
\begin{equation}
F=ma
\end{equation}
\end{document}
在上面的代码中,通过\setlength
命令设置了\abovedisplayskip
和\belowdisplayskip
的值为10pt,即将章节标签之前和之后的垂直间距都设置为10pt。可以根据需要调整具体的数值大小。