我只想增加两个段落之间的间距,而不是整个文档的间距。例如,我想要这样的内容
第 1 段:此处为一个段落
Paragraph2:第1段与本段之间的间距,默认选项。
第 3 段:第 3 段与第 2 段之间的间距比第 2 段与第 1 段之间的间距大/小(就我的目的而言,我希望间距更大)。
答案1
要在段落之间插入局部额外空格,LaTeX 提供了命令\smallskip
、\medskip
和 ,\bigskip
它们将添加 、 和 的空间\smallskipamount
(\medskipamount
请\bigskipamount
参阅示例以了解使用该类时这些命令的默认值article
)。或者,您可以使用 来添加自定义额外空格\vspace{<extent of space>}
,使用 (La)TeX 单位(如 pt、ex 等)或 的倍数,例如\baselineskip
。(注意:\smallskip
& 朋友在内部使用\vspace
。)
\documentclass{article}
\newcommand*{\sometext}{Hello, here is some text without a meaning. This
text should show, how a printed text will look like at this place.
If you read this text, you will get no information.}
\begin{document}
\verb|\smallskipamount|: \the\smallskipamount
\verb|\medskipamount|: \the\medskipamount
\verb|\bigskipamount|: \the\bigskipamount
\sometext
\sometext
\medskip
\sometext
\vspace{1.5\baselineskip}
\sometext
\end{document}