\begin{environment} text \end{environment}
其中environment 是环境的名称。只要保持调用顺序,环境可以嵌套几
次。
\begin{aaa}...\begin{bbb}...\end{bbb}...\end{aaa}
在下面的章节中,对所有重要的环境都做了解释。
2.11 环境 29
2.11.1 Itemize, Enumerate, and Description
itemize环境用于简单的列表,enumerate环境用于带序号的列表,description 环境用于带描述的列表。
\flushleft
\begin{enumerate}
\item You can mix the list environments to your taste:
\begin{itemize}
\item But it might start to look silly.
\item[-] With a dash.
\end{itemize}
\item Therefore remember:
\begin{description}
\item[Stupid] things will not become smart because they are in a list.
\item[Smart] things, though, can be presented beautifully in a list.
\end{description}
\end{enumerate}
1. You can mix the list environments to your taste:
• But it might start to look silly.
- With a dash.
2. Therefore remember:
Stupid things will not become smart because they are in a list.
Smart things, though, can be presented beautifully in a list.
2.11.2 Flushleft, Flushright, and Center
flushleft 和 flushright 环 境 分 别 产 生靠 左 排 列 和靠 右 排 列的 段 落。center环境产生居中的文本。如果你不输入命令\\指定断行点,LATEX 将自行决定。
\begin{flushleft}
This text is\\ left-aligned.
\LaTeX{} is not trying to make each line the same length.
\end{flushleft}
This text is
left-aligned. LATEX is not trying to make each line the same length.
\begin{flushright}
This text is right-\\aligned.
\LaTeX{} is not trying to make each line the same length.
\end{flushright}
This text is right- aligned. LATEX is not trying to make each line the same length.
30 文档排版
\begin{center}
At the centre\\of the earth
\end{center}
At the centre of the earth
2.11.3 Quote, Quotation, and Verse
quote环境对重要断语和例子的引用很重要。
A typographical rule of thumb for the line length is:
\begin{quote}
On average, no line should be longer than 66 characters.
\end{quote}
This is why \LaTeX{} pages have such large borders by default and also why multicolumn print is used in newspapers.
A typographical rule of thumb for the line length is:
On average, no line should be longer than 66 characters.
This is why LATEX pages have such large bor- ders by default and also why multicolumn print is used in newspapers.
有两个类似的环境:quotation和verse环境。quotation环境用于 超过几段的较长引用,因为它对段落进行缩进。verse环境用于诗歌,在诗 歌中断行很重要。在一行的末尾用\\断行,在每一段后留一空行。
I know only one English poem by heart. It is about Humpty Dumpty.
\begin{flushleft}
\begin{verse}
Humpty Dumpty sat on a wall:\\
Humpty Dumpty had a great fall.\\
All the King’s horses and all the King’s men\\
Couldn’t put Humpty together again.
\end{verse}
\end{flushleft}
I know only one English poem by heart. It is about Humpty Dumpty.
Humpty Dumpty sat on a wall:
Humpty Dumpty had a great fall.
All the King’s horses and all the King’s men
Couldn’t put Humpty together again.
2.11.4 逐字打印
位于\begin{verbatim}和\end{verbatim}之间的文本将直接打印,
包括所有的断行和空白,就像在打字机上键入一样,不执行任何LATEX命 令。
2.11 环境 31
在一个段落中,类似的功能可由
\verb+text+
完成。+仅是分隔符的一个例子。除了*或空格,可以使用任意一个字符。
这个小册子中的许多例子是用这个命令排印的。
The \verb|\ldots| command \ldots
\begin{verbatim}
10 PRINT "HELLO WORLD ";
20 GOTO 10
\end{verbatim}
The\ldotscommand . . .
10 PRINT "HELLO WORLD ";
20 GOTO 10
\begin{verbatim*}
the starred version of the verbatim environment emphasizes the spaces in the text
\end{verbatim*}
theÃstarredÃversionÃof theÃÃÃÃÃÃverbatim environmentÃemphasizes theÃspacesÃÃÃinÃtheÃtext
带星的命令\verb能以类似的方式使用:
\verb*|like this :-) | likeÃÃÃthisÃ:-)Ã
verbatim环境和\verb命令不能在其他命令的参数中使用。
2.11.5 表格
tabular环境能用来排印带有水平和铅直表线的漂亮表格。LATEX自动 确定每一列的宽度。
命令
\begin{tabular}{table spec}
的参量table spec定义了表格的式样。用一个l产生左对齐的列,用一个r 产生右对齐的列,用一个c产生居中的列;用p{宽度值width}产生相应宽 度、包含自动断行文本的列;|产生铅直表线。
32 文档排版 在tabular环境中,用&跳入下一列,用\\开始新的一行,用\hline 插入水平表线。用\cline{j-i}可添加部分表线,其中j和i分别表示表线 的起始列和终止列的序号。
\begin{tabular}{|r|l|}
\hline
7C0 & hexadecimal \\
3700 & octal \\ \cline{2-2}
11111000000 & binary \\
\hline \hline 1984 & decimal \\
\hline
\end{tabular}
7C0 hexadecimal 3700 octal 11111000000 binary
1984 decimal
\begin{tabular}{|p{4.7cm}|}
\hline
Welcome to Boxy’s paragraph.
We sincerely hope you’ll all enjoy the show.\\
\hline
\end{tabular}
Welcome to Boxy’s paragraph.
We sincerely hope you’ll all en- joy the show.
表列分隔符可由@{...}构造。这个命令去掉表列之间的间隔,代之 为两个花括号间的任何输入。一个用途在于下面要解释的十进制数对齐问 题。另一个可能应用在于用@{}压缩表列右端空间。
\begin{tabular}{@{} l @{}}
\hline
no leading space\\
\hline
\end{tabular}
no leading space
\begin{tabular}{l}
\hline
leading space left and right\\
\hline
\end{tabular}
leading space left and right
由于没有内建的方法使十进制数按小数点对齐,9我们可以使用两列
“作弊”到达这个目的:整数右对齐,小数左对齐。\begin{tabular}行
9如果系统安装了‘tools’包,请看一下宏包dcolumn。
2.12 浮动体 33