A.一些标题:文本
B. 另一个标题:更多文字
C. 又一个头:很多 Tex
我试过:
\begin{description}[\Alph] %[font=$\Alph\ $\itshape]
\item[some heading] Text
\end{description}
答案1
我不确定其中的数字是否Head1, Head2, ...
应该是实际数字或者仅仅是标题的示例,如第一个标题、第二个标题等等。
输出
代码
\documentclass{article}
\usepackage{enumitem}
\newcounter{itemalph}
\setcounter{itemalph}{1}
\newcommand\xitem[1]{%
\item[\Alph{itemalph}.~#1:]
\stepcounter{itemalph}
}
\begin{document}
\begin{description}[font=\normalfont\itshape]
\xitem{Head1} description
\xitem{Head2} description
\xitem{Head3} description
\end{description}
\end{document}
答案2
我定义了一个enumdescription
可以完成这项工作的环境:
\documentclass{article}
\usepackage{enumitem}
\usepackage{etoolbox}
\newcounter{enumdescr}
\makeatletter
\newenvironment{enumdescription}{%
\setcounter{enumdescr}{0}%
\pretocmd{\descriptionlabel}{\refstepcounter{enumdescr}\enit@format\Alph{enumdescr}.~}{}{}
\apptocmd{\descriptionlabel}{:}{}{}
\setlist[description]{font=\normalfont\itshape}
\description}%
{\enddescription}
\makeatother
\begin{document}
\begin{enumdescription}
\item[Head1] description
\item[Head2] description
\item[Head3] description
\end{enumdescription}
\end{document}
答案3
此代码片段应该可以工作:
\documentclass{article}
\begin{document}
\begin{description}
\item[A. Head1:] Text
\item[B. Head2:] Text
\end{description}
\end{document}