열거된 정렬 목록이 되도록 정렬 목록을 어떻게 조정합니까? 현재 제가 가지고 있는 정렬된 목록은 다음과 같습니다.
\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
.