原??文:Paragraphs and new lines
译??者:Xovee
翻译时间:2020年5月24日
LaTeX 中的段落和换行
LaTeX 默认的排版已经是很好的了,不过我们有时候也需要一些定制化。本篇文章将会告诉你如何排版段落、改变文字对齐、以及添加空白的行。
文章目录
- LaTeX 中的段落和换行
- 介绍
- 新段落
- 段落对齐(文字对齐)
- 段落缩进
- 延伸阅读
介绍
让我们用一个例子开始:
1 2 3 4 5 6 7 8 9 10 11 | \begin{center} Example 1: The following paragraph (given in quotes) is an example of Center Alignment using the center environment. ``LaTeX is a document preparation system and document markup language. LaTeX uses the TeX typesetting program for formatting its output, and is itself written in the TeX macro language. LaTeX is not the name of a particular editing program, but refers to the encoding or tagging conventions that are used in LaTeX documents". \end{center} |
例子中的两个段落包含在一个 center 环境之中,这使环境中的文字变成居中对齐。需要注意的是,如果你想开始一个新的段落,你需要添加空白行。这是一种非常自然的做法,当然,还有其他方法。
在 Overleaf 中打开这个例子。
新段落
为了在 LaTeX 中开始一个新的段落,你需要添加空白行。还有另外一种方法:
1 2 3 4 | This is the text in first paragraph. This is the text in first paragraph. This is the text in first paragraph. \par This is the text in second paragraph. This is the text in second paragraph. This is the text in second paragraph. |
显然,
默认情况下,段落会进行缩进,距离是当前文字大小的 1.5 倍。段落之间也不会有空白的行。下面的章节介绍如何改变段落的样式。
在 Overleaf 中打开这个例子。
段落对齐(文字对齐)
LaTeX 之中的段落是完全对齐的,例如,文字左边和右边的边距都是对齐的。如果你想改变段落的对齐方式,LaTeX 有如下几个环境:center, flushleft, flushright(center 环境如上面的例子所示)。
1 2 3 4 5 6 7 | \begin{flushleft} ``LaTeX is a document preparation system and document markup language. LaTeX uses the TeX typesetting program for formatting its output, and is itself written in the TeX macro language. LaTeX is not the name of a particular editing program, but refers to the encoding or tagging conventions that are used in LaTeX documents". \end{flushleft} |
上面提到的环境都基于开关命令:
更多关于文字对齐的信息请参考这篇文章。
在 Overleaf 中打开这个例子。
段落缩进
默认情况下,LaTeX 不会缩进一个章的第一个段落。而该章之后段落的缩进则取决于参数
1 2 3 4 5 6 | \setlength{\parindent}{10ex} This is the text in first paragraph. This is the text in first paragraph. This is the text in first paragraph. \par \noindent %The next paragraph is not indented This is the text in second paragraph. This is the text in second paragraph. This is the text in second paragraph. |
该参数的默认值是由文档的类所决定的。你可以使用
如果你想创建一个没有缩进的段落,你可以在段落的开头使用
如果你想对一个没有缩进的段落进行缩进,你可以使用
更多的例子和信息请参考段落样式。
在Overleaf中查看这个例子
延伸阅读
更多信息请参考:
- LaTeX中的长度
- 段落样式
- 换行和空白行
- 文字对齐
- 列表
- 粗体、斜体、下划线
- 一篇并不间断的LaTeX2e介绍