【LaTeX入門】05、換行、換段、換頁、首行縮排等命令

iteye_21202發表於2013-05-06
換行命令

\\:換行。
\\[offset]:換行,並且與下一行的行間距為原來行間距+offset。
\newline:與\\相同。
\linebreak:強制換行,與\newline的區別為\linebreak的當前行分散對齊。

分段命令

\par:分段。

分頁命令

\newpage:分頁命令。
\clearpage:和 \newpage 類似。我們在使用 CJK 環境時會加入 \clearpage 在環境末尾。

首行縮排

最樸實的方法是設定 \parindent 的長度:\setlength{\parindent}{長度},如果想要首行縮排兩個漢字距離,則\setlength{\parindent}{2em}。
如果在CJK環境當中,則可以在\begin{CJK}{GBK}{song}後面緊跟 \CJKindent 實現首行縮排。
預設第一段不首行縮排,如果想讓第一段首行縮排,則可以使用 \usepackage{indentfirst}。
如果想讓某一段不首行縮排,則可以在該段前加上 \noindent。
如果想讓整篇文章都首行不縮排,則:\setlength{\parindent}{0pt}
注意:在 LaTeX 中,一個回車表示一個空格,兩個回車表示一個分段。

通常實踐中,我們都是按照下面的模板進行擴充的:

\documentclass[12pt,a4paper]{article}
\usepackage{CJK} %匯入CJK巨集包
\setlength{\parskip}{10pt} % 設定部分段落間隔
\begin{document}
\begin{CJK*}{GBK}{song} %開始CJK環境
\CJKtilde %重定義"~"
\CJKindent %設定首段縮排

This paper reflects on the history and development of the LaTeX Project Public License (LPPL) .\par %此處為分段

\noindent(此處不首行縮排)In late June, the TUG 2010 conference was held in San Francisco to great success.

\clearpage
\end{CJK*} %結束CJK環境
\end{document}

\setlength{\parskip}{10pt}:段落間隔是 \lineskip 和 \parskip 之和,這裡設定 \parskip 的值是為了增加段落的間隔。

\CJKindent:在 CJK 環境中首行縮排。



相關文章