带字母列表的 Latex 缩进

带字母列表的 Latex 缩进

我想通过 overleaf 实现这个简单的列表。

1. xxx
2. xxx
3. xxx
  (a) First line,
  (b) xxxxx
  (c) xxxx
4. xxx

下面是我现在的代码,我是 Latex 的新手。我卡在这里,不知道如何解决这个问题。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}

\title{Computer Security HW1}
\author{Student Name: Chen-I Chang }
\date{09/13 2018}

\begin{document}

\maketitle

\section{}
\section{}
\section{}
\begin{enumerate}[(a)]
\item an apple
\item a banana
\item a carrot
\item a durian
\end{enumerate}
\section{}
\end{document}

控制台抛出了错误。

出了点问题,也许缺少了物品

答案1

正如 Bernard 所说,\begin{enumerate}[(a)]这不是一个标准的 \LaTeX 环境。包提供了有关枚举标签的可选参数enumitem

因此这将完成这项工作:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{enumitem}

\title{Computer Security HW1}
\author{Student Name: Chen-I Chang }
\date{09/13 2018}

\begin{document}

\maketitle

\section{}
\section{}
\section{}
\begin{enumerate}[label={(\alph*)}]
\item an apple
\item a banana
\item a carrot
\item a durian
\end{enumerate}
\section{}
\end{document}

在此处输入图片描述

请注意,使用选项加载enumitem允许shortlabels使用与包相同的语法enumerate,即

\begin{enumerate[(a)]

相关内容