我正在使用exam
documentclass,我想知道是否有办法用 a、b、c、... 而不是 1、2、3、... 来标记问题。
我经常发现,我们可以重新定义\questionlabel
,但这仍然需要一个计数器(自然数)。示例取自如何将考试类别中的问题编号从“1”更改为“问题编号 1”?
\renewcommand{\questionlabel}{Question No.~\thequestion.}
也许有办法将数字转换\thequestion
为字母表中的字母?
答案1
由于 OP 没有提供 MWE,我从这里借了一个:带考试类别的编号副本。
楼主说得对,这\questionlabel
是需要重新定义的宏。在本例中,\alph{<counter>}
计数器是以小写字母格式表示的。
\documentclass[addpoints]{exam}
\renewcommand{\questionlabel}{\alph{question}.}
\begin{document}
\begin{questions}
\question[10]
Why is there air?
\question[15]
How much wood would a woodchuck chuck if a woodchuck could chuck
wood?
\question[10]
Compute $\displaystyle\int_0^1 x^2 \, dx$.
\end{questions}
\gradetable[v][questions]
\end{document}