我有一个文档,其中有很多地方我想将文本行放在一起。其中一些是列表,如下面给出的示例所示。一个问题是,这样做的最佳做法是什么?我使用过\filbreak
和\newpage
,但由于我经常编辑章节,因此,如果我使用其中任何一个,我经常会在稍后出现不该出现的断行。
因此,我最终开始使用 minipages。它们似乎工作正常,只是我需要 minipage 中的内容与它前后的内容对齐。我了解到 minipage 有自己的边距,这会造成干扰(?)。我该如何解决这个问题?
这是 MWE。谢谢。
\documentclass[10pt]{memoir}
\begin{document}
\begin{enumerate}
\item If I pull the trigger, Abe Lincoln will die.
\item I do not pull the trigger.
\item Therefore, Abe Lincoln will not die.
\end{enumerate}
\vspace{2mm}
\begin{minipage}{1.0\textwidth}
\begin{enumerate}
\item Abe Lincoln was either from France or from Luxembourg.
\item Abe Lincoln was not from Luxembourg.
\item Therefore, Abe Lincoln was from France.
\end{enumerate}
\vspace{-2mm}
\end{minipage}
\begin{enumerate}
\item If the world were to end today, then I would not need to get up tomorrow morning.
\item I will need to get up tomorrow morning.
\item Therefore, the world will not end today.
\end{enumerate}
\end{document}