LaTeX中段落缩进的概念

段落缩进是文本中都有的一个概念。在一个段落中,会有一个至多个句子组成的。为了让段落结构更加分明,段落的第一句会向右空一定的距离。由于LaTeX的段落默认是有缩进的(一般首先有2个字符的缩进),所以无论一个段落有多长,或者无论有多少个段落,每个段落都会缩进它们的第1行。

在一般的段落中,在水平标尺方向,有四个段落缩进的概念:首行缩进、悬挂缩进、左缩进以及右缩进。其中:

  • 首行缩进
    将某个段落的第一行向右进行段落缩进,其余行不进行段落缩进。其形状为倒三角形。
  • 悬挂缩进
    将某个段落首行不缩进,其余各行缩进。其形状为正立三角形。
  • 左缩进
    将某个段落整体向右进行缩进。其形状为矩形。
  • 右缩进
    将某个段落整体向左进行缩进,在水平标尺的右侧留白,形状为正立三角形。

一个段落分行的问题
但是需要注意的是,由于在源代码中,连续的行会被当成同一个段落来处理,所以即便会有换行,也是按同一行处理的。如果内容短很容易理解,但是当内容多时,就会给人带来困扰。

现在让我们看以下的示例。

\documentclass{article}
\usepackage{indentfirst}
	
\begin{document}
\title{This an example.}
\author{Wei HAO}
\date{December 12, 2019}
\maketitle
In this section we ara going to discuss the distribution of probability. 
There are many distributions that are commonly used in real life, such as:
$$
F(x) = \int_{-\infty}^{\infty}f(x)dx
= \int_{-\infty}^{\infty}\frac{1}{\sqrt{2\pi}\sigma}e^{-\frac{(x-\mu)^2}{2\sigma^2}}dx
$$
This is the most common one ...
	
\end{document}

在这里插入图片描述

可以看到,根据连续行按同一段落处理:In this section we ara going to discuss the distribution of probability.There are many distributions that are commonly used in real life, such as: 虽然写的是两行,但是仍然放在同一段内进行处理。

但是,在最后一段“This”开始,是顶格写的,换行了,但是却没有缩进。这是因为,在原文中,公式占据了整行。而This这一行在原代码中,是连续的行,所以属于同一段内容。因此,不会有缩进。如果我们把This另起一行,如下所示的修改:

\documentclass{article}
\usepackage{indentfirst}
	
\begin{document}
\title{This an example.}
\author{Wei HAO}
\date{December 12, 2019}
\maketitle
In this section we ara going to discuss the distribution of probability. 
There are many distributions that are commonly used in real life, such as:
$$
F(x) = \int_{-\infty}^{\infty}f(x)dx
= \int_{-\infty}^{\infty}\frac{1}{\sqrt{2\pi}\sigma}e^{-\frac{(x-\mu)^2}{2\sigma^2}}dx
$$

This is the most common one ...
	
\end{document}

就会发现缩进产生了。
在这里插入图片描述