如何将考试类别中的问题编号从“1”更改为“问题编号 1”?

如何将考试类别中的问题编号从“1”更改为“问题编号 1”?

我需要输入如下内容:

enter image description here

但我想将“编号”从“x”更改为“问题编号 x”。我该怎么做呢?

如果我所要求的东西在考试课上无法实现,那么也欢迎提供替代解决方案。谢谢。

答案1

重新定义\questionlabel。有关详细信息,请参阅手册第 4.9 节。

\documentclass{exam}

\renewcommand{\questionlabel}{Question No.~\thequestion.}

\begin{document}

\begin{questions}
\question When in doubt, should one provide a minimal working example?
\end{questions}

\end{document}

enter image description here

相关内容