如何调整排序列表,使其成为枚举排序列表?这是我当前拥有的排序列表。
\documentclass{report}
\usepackage{enumitem}
\usepackage{datatool}
\newcommand{\sortitem}[2]{%
\DTLnewrow{list}%
\DTLnewdbentry{list}{label}{#1}%
\DTLnewdbentry{list}{description}{#2}%
}
\newenvironment{sortedlist}{%
\DTLifdbexists{list}{\DTLcleardb{list}}{\DTLnewdb{list}}%
}{%
\DTLsort{label}{list}%
\begin{description}%
\DTLforeach*{list}{\theLabel=label,\theDesc=description}{%
\item[\theLabel] \theDesc }%
\end{description}%
}
\section*{Analysis.}
\begin{sortedlist}
\sortitem{Elementary Analysis--The Theory of Calculus}{Ross}
\sortitem{Analysis of Functions of a Single Variable}{Baggett}
\sortitem{Advanced Calculus and Real Analysis}{Craw}
\end{sortitem}
\end{document}
我也希望这个列表是一个枚举列表。这可能吗?如果可以,怎么做?
答案1
只需使用enumerate
d 列表而不是description
:
\documentclass{article}
\usepackage{enumitem,datatool}% http://ctan.org/pkg/{enumitem,datatool}
\newcommand{\sortitem}[2]{%
\DTLnewrow{list}%
\DTLnewdbentry{list}{label}{#1}%
\DTLnewdbentry{list}{description}{#2}%
}
\newenvironment{sortedlist}
{% \begin{sortedlist}
\DTLifdbexists{list}{\DTLcleardb{list}}{\DTLnewdb{list}}%
}{% \end{sortedlist}
\DTLsort{label}{list}%
\begin{enumerate}%
\DTLforeach*{list}{\theLabel=label,\theDesc=description}{%
\item \textbf{\theLabel} \theDesc}%
\end{enumerate}%
}
\begin{document}
\section*{Analysis.}
\begin{sortedlist}
\sortitem{Elementary Analysis--The Theory of Calculus}{Ross}
\sortitem{Analysis of Functions of a Single Variable}{Baggett}
\sortitem{Advanced Calculus and Real Analysis}{Craw}
\end{sortedlist}
\end{document}
由于您正在加载enumitem
,您可以将列表设置插入作为enumerate
环境选项的一部分。