我正在用 LaTeX 写一篇文章。在结论部分的最后一段,行间距意外缩小。我不明白发生了什么。我怎样才能使行间距均匀?
Overleaf 上的测试链接如下:
答案1
不要使用strip
环境来表示您列出的方程组。相反,使用环境figure*
来让方程块流到下一页(跨两列),然后重新措辞段落以识别您引用的方程。例如:
如第 3 节所述,机器人动力学需要与其惯性运动相关的矩阵。它们的定义如下式 (10)-(13) 所示,以供参考。
As mentioned in section \ref{sec:dynamics_control}, the robot dynamics
requires matrices related to its inertial movement. Their definitions
are in equations (\ref{eq:M})-(\ref{eq:nu}) below for reference.
\begin{figure*}[t]
% your equations here
\end{figure*}
% rest of your document
我\label{eq:M}
为第一个方程添加了一个以便正确引用它。