如何在两段文本之间插入空行而不创建段落?

如何在两段文本之间插入空行而不创建段落?

我想在两个文本之间插入一个空白行,但不想在第二个文本中创建段落。第一个文本和第二个文本应该以直线开始。例如,

月球与地球同步旋转,始终呈现出同一面,即月球近侧被黑暗的火山月海所标记,这些月海充满在明亮的古老地壳高地和突出的撞击坑之间。

月球的引力影响产生了海洋潮汐、体潮汐以及白天的略微延长。

我尝试了很多命令,但在第二段文本中得到了段落。如果我使用\vspace,\bigskip等,那么我会得到空白行,但不是在第一段文本之后,而是在其他地方得到空白行。有人能帮我吗?

谢谢。

答案1

我猜你的意思是缩进...尝试\noindent在每个段落的开头添加。例如:

\noindent The Moon is in synchronous rotation with Earth, always showing the same face with its near side marked by dark volcanic maria that fill between the bright ancient crustal highlands and the prominent impact craters.

\noindent The Moon's gravitational influence produces the ocean tides, body tides, and the slight lengthening of the day.//

有一种更优雅的方法来解决这个问题,即在\setlength{\parindent}{0cm}前面添加这一行\begin{document},这将减少文档中所有段落的缩进。

答案2

关于如何更改 ,接受的答案中的建议很好\parindent。但是,如果您希望所有段落之间都有“间隙”,则不应使用\\。更好的选择是执行以下操作:

\documentclass{article} 
\usepackage[parfill]{parskip}                           
\usepackage{lipsum} % this is just so we can use the \lipsum command to generate filler text

\begin{document} 

\lipsum 

\end{document} 

该选项parfill有助于确保段落末尾留出一点空白,以帮助清楚地表明段落已结束。当新段落从新页面顶部开始时,这会很有帮助。

相关内容