1. 有序列表enumerate用于生成带编号的列表例如 1、2、3 或 a、b、c 等。\begin{enumerate} \item This is the first item. \item This is the second item. \item This is the third item. \end{enumerate}显示效果类似于1. This is the first item. 2. This is the second item. 3. This is the third item.2. 无序列表itemize用于生成圆点列表也就是不带编号的项目符号列表。\begin{itemize} \item This is the first item. \item This is the second item. \item This is the third item. \end{itemize}显示效果类似于• This is the first item. • This is the second item. • This is the third item.
Latex写论文 highlight部分撰写 两种常见列表形式 enumerate 和 itemize
1. 有序列表enumerate用于生成带编号的列表例如 1、2、3 或 a、b、c 等。\begin{enumerate} \item This is the first item. \item This is the second item. \item This is the third item. \end{enumerate}显示效果类似于1. This is the first item. 2. This is the second item. 3. This is the third item.2. 无序列表itemize用于生成圆点列表也就是不带编号的项目符号列表。\begin{itemize} \item This is the first item. \item This is the second item. \item This is the third item. \end{itemize}显示效果类似于• This is the first item. • This is the second item. • This is the third item.