自定义点枚举

自定义点枚举

我正在为想要测试数学能力的朋友制作模拟考试题目模板。我想创建一个枚举(如果我错了请纠正我),如下所示:

问题

我设法使它看起来像 LaTeX 中的上图,但需要很长时间来调整(即 5 点、10 点等)......

有人可以帮我使它更简单吗?

答案1

xparse我可以在和的帮助下提出这个建议enumitem

\documentclass{article}
\usepackage{fourier}
\usepackage[svgnames]{xcolor}

\usepackage{enumitem}
\usepackage{xparse}
\newcounter{descriptcount}

\NewDocumentEnvironment{enumdescript}{O{}}{\setcounter{descriptcount}{0}\renewcommand*\descriptionlabel[1]{\stepcounter{descriptcount}%
                                \normalfont\colorbox{LimeGreen}{\makebox[4em]{##1\ points}}\quad \alph{descriptcount})}\description[leftmargin =7.15em]}{\enddescription}

\begin{document}

\begin{enumdescript}
   \item[5] Some hard questions. Some hard questions. Some hard questions. Some hard questions. Some hard questions. Some hard questions. Some hard questions. Some hard questions.
   \item[10] item two
\end{enumdescript}

\end{document} 

在此处输入图片描述

相关内容