Latex列表分为有序列表(Ordered lists)和无序列表(Unordered lists)
有序列表采用关键字enumerate,无序列表采用关键字itemize
用法如下:
有序列表(Ordered lists)
\begin{enumerate}
\item This is the first entry in our list
\item The list numbers increase with each entry we add
\end{enumerate}
无序列表(Unordered lists)
\begin{itemize}
\item The individual entries are indicated with a black dot, a so-called bullet.
\item The text in the entries may be of any length.
\end{itemize}

本文介绍了Latex中列表的基本用法,包括有序列表和无序列表的创建方式。有序列表使用关键字enumerate,而无序列表则使用itemize。通过简单的示例展示了如何设置列表项及其编号。
8000





