(由于不熟悉 LaTeX,因此请详细回答并举例说明)
我正在尝试撰写一份报告,其中一部分我列出了需要提出的问题。但是,每当我尝试添加列表时,小节和文本“这项工作的目的...”之间的间距都很大/很难看。
\subsubsection{Leaf Parallelization}
A single tree is shared with a single thread used to operate on the tree. Whenever a simulation run is required, the thread hands the simulation to another thread which runs independently. Introduced by Cazenave and Jouandeau [8], leaf parallelization is one of the simplest ways to parallelize MCTS. However, since simulations assigned earlier are completed and reused, leaf parallelization is slow as it cannot utilize high numbers of threads.
\subsection{Purpose, Research Question, and Hypotheses}
The purpose of this work described is to explore the question of how the amount of shared information affects the win-ratio performance of a game learned through a slow-tree parallelized Monte Carlo Tree Search. Since the size of the board can be scaled up, outcomes in simple environments can be separated distinctively, and results can be compared with each other, the game Dots-and-Boxes is utilized.
The following research question has been formed to guide this investigation:
Q: How does the amount of shared information affect the win-ratio performance?
The amount of shared information can be varied in four aspects:
a)
b)
我知道发生了什么,但我不知道如何解决。谢谢!
答案1
这几乎肯定是由于下一个页(方法)。LaTeX 尽力让标题至少保留一些文本:它发现第一页上没有足够的空间放置标题和一些文本,因此将其移动到下一页,因为它非常不愿意在页面底部出现孤立标题。但这意味着第一页不够用,因此它会在段落和标题之间填充该页面,以尝试将最后一行强制到文本块的底部。
当您删除第一页上的某些内容时,空间就足够了,它会向上移动到标题 3。不再有填充(或至少更少)。这至少是我的猜测。
JouleV 在他的评论中说得对,对于问题列表,最好使用列表环境,它看起来像
\begin{enumerate}
\item First item
\item Second item
\end{enumerate}
虽然在这种情况下这不一定是一个解决方案。“解决方案”可能是以下之一:
重写一些文本,以便您有更多或更少的空间。这是否可行取决于具体情况,但有时文本中的微小更改可以使原本不合适的内容变得合适。
添加
\raggedbottom
到您的文档中。使用\raggedbottom
LaTeX 将不再添加空间来尝试使您的页面长度相同。任何间隙都将位于页面末尾。这通常看起来更好,并且通常是具有大量标题和副标题的文档的不错选择。无论如何,尝试一下看看是否有帮助很容易。使用特殊指令,例如
\enlargethispage
允许特定页面变长或(使用负数)变短。这告诉 LaTeX 让特定页面上的文本比正常边距允许的长或短。它会产生不平衡的页面,但有时这是避免难看的断行的唯一方法。关于这一点,你需要知道的主要一点是在你确定不会重写任何内容之前,不要这样做,因为否则最终会陷入真正的混乱。
这真的让我想到了最后一点建议。最好不是在您的文档或多或少完成之前,不要太担心这类事情。由于这种间距问题对内容非常敏感,因此最好先完成内容,然后再进行更改。如果您的写作习惯是先用章节和小节概述文档,然后再填写它们,那么您经常会看到此类问题;随着您填写文档,它们通常会得到很大的改善。