枚举、列举和描述

\begin{list_type}
 \item The first item
 \item The second item
 \item The third etc \ldots
\end{list_type}

默认的 list_type 有 enumerate、 itemize 和 description,区别主要是列项标签的不同。enumerate 是有序的列表;itemize 用圆点;description 需要 \item[label] 指定标签。各种列表环境可以互相嵌套,此时,enuemrate 的标签会自动变化以体现分级层次。

如果不想让列项第一行和标签同行,加一个 \hfill。

\begin{description}
 \item[First] \hfill \\
 The first item
 \item[Second] \hfill \\
 The second item
 \item[Third] \hfill \\
 The third etc \ldots
\end{description}

紧凑的列表

以上的列表环境空白较大,如果需要更紧凑的列表方式,可以选用 mdwlist 宏包提供的 itemize*、enumerate* 和 description* 环境,用法和无星号的版本一致。
定制列表环境
距离

在列表的内部,很容易改变一些距离

\begin{itemize}
 \setlength{\itemsep}{1pt}
 \setlength{\parskip}{0pt}
 \setlength{\parsep}{0pt}
 \item first item
 \item second item
\end{itemize}

更详细的参数需要看下面 list 环境。
标签和计数器

枚举的列表计数可以通过其计数器来改变。enumerate 提供了四个计数器 enumi,enumii,enumiii, enumiv 对应不同层次的枚举。

\begin{enumerate}
 \setcounter{enumi}{4}
 \item fifth element
\end{enumerate}

会产生

5. fifth element

LaTeX 可以用其他格式打印这些计数器的值,
命令    例子
\arabic     1, 2, 3 ...
\alph     a, b, c ...
\Alph     A, B, C ...
\roman     i, ii, iii ...
\Roman     I, II, III ...
\fnsymbol     星号,单剑号,双剑号等

% 重定义第一级计数显示
\renewcommand{\theenumi}{\Roman{enumi}}
\renewcommand{\labelenumi}{\theenumi}

% 重定义第二级计数显示
\renewcommand{\theenumii}{\Alph{enumii}}
\renewcommand{\labelenumii}{(\theenumii)}

这样看起来有些麻烦。有时候直接写

\renewcommand{\labelenumi}{\Roman{enumi}}

但是这样有一个缺点:如果在列表内部引用这些计数器,就会按原来的格式打印。

对列举 itemize 而言,无须计数。标签的形式可以通过 \item[label] 来改变。或者通过各级 \labelitemi,\labelitemii,\labelitemiii,\labelitemiv。所以

\item[$\star$]

等价于

\renewcommand{\labelitemi}{$\star$}

enumerate 宏包

enumerate 宏包为 enumerate 提供了更灵活的标签。可以使用 A,a,I,i,1 作为可选项产生 \Alph,\alph,\Roman,\roman,\arabic 的效果。

usepackage{enumerate}
......
\begin{enumerate}[(i)]
 \item The first item
 \item The second item
 \item The third etc \ldots
\end{enumerate}

行内列表

paralist 宏包提供了 inparaenum 环境,产生不分段的列表。同样支持跟上面 enumerate 宏包类似的格式化标签。

\usepackage{paralist}
 ......
\textbf{\itshape Inline lists}, which are  sequential in nature, just like enumerated lists, but are
\begin{inparaenum}[\itshape a\upshape)]
 \item formatted within their paragraph;
 \item usually labelled with letters; and
 \item usually have the final item prefixed with  `and' or `or',
\end{inparaenum} like this example.

list 环境

最有可定制性的当属 list 环境。以上的 enumerate, itemize,description 其本质上都是封装好的 list 环境。

\begin{list}{label}{spacing}
 \item First item
 \item Second item
 \end{list}

其中, label 的内容将会作为标签,放在一个单独的盒子里,出现在每一 item 之前。也可以通过 \item[label] 来实现。

spacing 设定一些距离。通常为空,因为默认距离已经足够好了。

* \topsep 列表顶部与之前内容的额外空白,不含 \baselineskip
    * \partopsep 如果列表之前是一个空行,列表顶部的额外空白
    * \itemsep 列表各项之间额外的垂直空白
    * \parsep 一个 item 中,如果分段,段落间额外空白
    * \leftmargin 列表与左边距之间的水平距离,值为非负
    * \rightmargin 列表与右边距之间的水平距离,值为非负
    * \itemindent 每一 item 第一行的缩进
    * \listparindent 每一 item 第一行之后各行的缩进
    * \labelsep 标签盒子与每一 item 第一行文本之间距离
    * \labelwidth 标签盒子的宽度;如果标签过长,这一宽度会自动变大,直到列表的第一行文本为止
    * \makelabel{label} 生成 \item[label] 命令所要求的标签
    * \usecounter{ctr} 使用列表项目计数器 ctr,初始值为 0

一个例子

%    定义计数器
\newcounter{Lcount}
%   标签计数显示为罗马数字
\begin{list}{Item-\Roman{Lcount}}
%    使用计数器
  {\usecounter{Lcount}
%    左右对称
  \setlength{\rightmargin}{\leftmargin}}
%    开始
\item This is the first item
\item And this is the second item
\end{list}

效果将是

Item-I  This is the first item
Item-II And this is the second item

枚举、列举和描述

\begin{list_type} \item The first item \item The second item \item The third etc \ldots \end{list_type}

默认的 list_type 有 enumerate、 itemize 和 description,区别主要是列项标签的不同。enumerate 是有序的列表;itemize 用圆点;description 需要 \item[label] 指定标签。各种列表环境可以互相嵌套,此时,enuemrate 的标签会自动变化以体现分级层次。

如果不想让列项第一行和标签同行,加一个 \hfill。

\begin{description} \item[First] \hfill \\ The first item \item[Second] \hfill \\ The second item \item[Third] \hfill \\ The third etc \ldots \end{description}

紧凑的列表

以上的列表环境空白较大,如果需要更紧凑的列表方式,可以选用 mdwlist 宏包提供的 itemize*、enumerate* 和 description* 环境,用法和无星号的版本一致。

定制列表环境

距离

在列表的内部,很容易改变一些距离

\begin{itemize} \setlength{\itemsep}{1pt} \setlength{\parskip}{0pt} \setlength{\parsep}{0pt} \item first item \item second item \end{itemize}

更详细的参数需要看下面 list 环境

标签和计数器

枚举的列表计数可以通过其计数器来改变。enumerate 提供了四个计数器 enumi,enumii,enumiii, enumiv 对应不同层次的枚举。

\begin{enumerate} \setcounter{enumi}{4} \item fifth element \end{enumerate}

会产生

5. fifth element

LaTeX 可以用其他格式打印这些计数器的值,

命令 例子
\arabic 1, 2, 3 ...
\alph a, b, c ...
\Alph A, B, C ...
\roman i, ii, iii ...
\Roman I, II, III ...
\fnsymbol 星号,单剑号,双剑号等
% 重定义第一级计数显示 \renewcommand{\theenumi}{\Roman{enumi}} \renewcommand{\labelenumi}{\theenumi} % 重定义第二级计数显示 \renewcommand{\theenumii}{\Alph{enumii}} \renewcommand{\labelenumii}{(\theenumii)}

这样看起来有些麻烦。有时候直接写

\renewcommand{\labelenumi}{\Roman{enumi}}

但是这样有一个缺点:如果在列表内部引用这些计数器,就会按原来的格式打印。

对列举 itemize 而言,无须计数。标签的形式可以通过 \item[label] 来改变。或者通过各级 \labelitemi,\labelitemii,\labelitemiii,\labelitemiv。所以

\item[$\star$]

等价于

\renewcommand{\labelitemi}{$\star$}

enumerate 宏包

enumerate 宏包为 enumerate 提供了更灵活的标签。可以使用 A,a,I,i,1 作为可选项产生 \Alph,\alph,\Roman,\roman,\arabic 的效果。

usepackage{enumerate} ...... \begin{enumerate}[(i)] \item The first item \item The second item \item The third etc \ldots \end{enumerate}

行内列表

paralist 宏包提供了 inparaenum 环境,产生不分段的列表。同样支持跟上面 enumerate 宏包类似的格式化标签。

\usepackage{paralist} ...... \textbf{\itshape Inline lists}, which are sequential in nature, just like enumerated lists, but are \begin{inparaenum}[\itshape a\upshape)] \item formatted within their paragraph; \item usually labelled with letters; and \item usually have the final item prefixed with `and' or `or', \end{inparaenum} like this example.

list 环境

最有可定制性的当属 list 环境。以上的 enumerate, itemize,description 其本质上都是封装好的 list 环境。

\begin{list}{label}{spacing} \item First item \item Second item \end{list}

其中, label 的内容将会作为标签,放在一个单独的盒子里,出现在每一 item 之前。也可以通过 \item[label] 来实现。

spacing 设定一些距离。通常为空,因为默认距离已经足够好了。

  • \topsep 列表顶部与之前内容的额外空白,不含 \baselineskip
  • \partopsep 如果列表之前是一个空行,列表顶部的额外空白
  • \itemsep 列表各项之间额外的垂直空白
  • \parsep 一个 item 中,如果分段,段落间额外空白
  • \leftmargin 列表与左边距之间的水平距离,值为非负
  • \rightmargin 列表与右边距之间的水平距离,值为非负
  • \itemindent 每一 item 第一行的缩进
  • \listparindent 每一 item 第一行之后各行的缩进
  • \labelsep 标签盒子与每一 item 第一行文本之间距离
  • \labelwidth 标签盒子的宽度;如果标签过长,这一宽度会自动变大,直到列表的第一行文本为止
  • \makelabel{label} 生成 \item[label] 命令所要求的标签
  • \usecounter{ctr} 使用列表项目计数器 ctr,初始值为 0

一个例子

% 定义计数器 \newcounter{Lcount} % 标签计数显示为罗马数字 \begin{list}{Item-\Roman{Lcount}} % 使用计数器 {\usecounter{Lcount} % 左右对称 \setlength{\rightmargin}{\leftmargin}} % 开始 \item This is the first item \item And this is the second item \end{list}

效果将是

Item-I This is the first item Item-II And this is the second item

latex列表的更多相关文章

  1. latex-列表环境

    介绍 latex 主要有三种列表环境,进行罗列的实现, 无序列表 -- itemize 有序列表 -- enumerate 描述列表 -- description 本文进行了一一介绍和演示, 同时添加 ...

  2. Latex插入项目列表符号

    1. 关于 {itemize}里序号的形式 (这个在书里有介绍): latex默认生成的简单列表, 默认为一个小圆点,..... 而我们在写文章时可能想要一些不一样的列表符号, 比如 -, * 之类的 ...

  3. Linux 中优秀的文本化编辑思想大碰撞(Markdown、LaTeX、MathJax)

    这样一个标题可能不太准确,因为确实无法准确地解释什么叫"文本化编辑思想".其实我这篇随笔主要是想探讨 Markdown.LaTeX.MathJax,有兴趣的朋友可以继续往下看,同时 ...

  4. 再来说说 LaTeX

    在我的上一篇随笔中,我提到了 Markdown.LaTeX 和 MathJax.这几个东西对目前的网络技术文章的写作.展示都有深远的影响.在上一篇中,我还给出了一份 LaTeX 语法的学习资料.在这一 ...

  5. TeXstudio 编写Latex论文的若干问题

    TeXstudio 编写Latex论文的若干问题解决方案总结       问题1: 如何安装TeXstudio 以及 Texstudio当中的中文字体使用问题.   一.如何安装TeXstudio 很 ...

  6. SCI英文论文写作- Latex 进阶

    SCI英文论文写作- Latex 进阶   1.设置行间距的方法: %\setlength{\baselineskip}{15pt} \renewcommand{\baselinestretch}{1 ...

  7. LaTeX简单使用方法

    Content LaTeX的用途 LaTeX文件布局 LaTeX的文档格式 公式环境 图的排版 表格的排版 有序列表和无序列表 引用 伪代码 参考文献 LaTeX的用途 LaTeX是一种基于TeX的排 ...

  8. 【积累篇:他山之石,把玉攻】Mime 类型列表

    按照内容类型排列的 Mime 类型列表 类型/子类型 扩展名 application/envoy evy application/fractals fif application/futurespla ...

  9. Whatbeg's blog 文章列表

    whatbeg.com 文章列表 ----------------------------------------------------------------------------------- ...

随机推荐

  1. Oracle 归档路径

    Oracle 的归档路径设置,这里主要按照官网说明记录 LOG_ARCHIVE_DEST_n 与 LOG_ARCHIVE_DEST_STATE_n 这两个参数. 我使用的数据库是11.2版本,这两个参 ...

  2. zoj1108 FatMouse's Speed

    给你每个物体两个参数,求最长的链要求第一个参数递增,第二个参数递减,要求输出任意最长路径. 首先第一反应根据第二个参数排个序,然后不就是最长上升子序列的问题吗? O(nlogn)的复杂度,当然这样可以 ...

  3. Repeater控件实现数据绑定,并实现分页效果

    前台显示代码 <pre name="code" class="csharp"><asp:Repeater ID="Repeater1 ...

  4. Node.js内置的工具和第三方模块来进行单步调试

    1.命令行调试: Node.js调试命令: run 执行脚本,在第一行暂停 restart 重新执行脚本 cont,c 继续执行,知道遇到下一个断点 next,n 单步执行 step,s 单步执行,并 ...

  5. phpcms 调用全站最新发布数据

    phpcms模板标签没有调用全站最新发布的数据 所以参考phpcms本身自带的lists方法写了一个Countlists调用全站数据 /** * 全站最热 * @param $data */ publ ...

  6. C的陷阱和缺陷研读笔记01

    词法分析: 编译器将程序分解成符号的方法是 从左到右一个一个字符的读入,如果该字符可能组成一个符号,再读入下一个字符 而c语言里的符号 / * =只有一个字符长, 是单字符的, /* == 一些事双字 ...

  7. cat监控平台环境搭建

    项目地址:https://github.com/dianping/cat 编译步骤: 这个项目比较另类,把编译需要的jar包,单独放在git分支mvn-repo里了,而且官方文档里给了一个错误的命令提 ...

  8. 转自:Python函数式编程指南(二):函数

    2. 从函数开始 2.1. 定义一个函数 如下定义了一个求和函数: 1 2 def add(x, y):     return x + y 关于参数和返回值的语法细节可以参考其他文档,这里就略过了. ...

  9. Mactype 解决字体出现剃尾

    使用mactype之后, 发现windows字体的效果改善了好多.但作为程序员, 天天和各种文本工具打交道.最近发现PHPStorm中的有些等宽字体会出现剃尾的现象.特别是 {} [] ()这些字符, ...

  10. #include <stdio.h>

    1 fflush 2 fgetc 3 fgets 4 fprintf 5 fputc 6 fputs 7 fscanf 8 fseek 9 ftell 10 perror 11 remove 12 r ...