如何自定义练习包中 \Question 使用的问题标签

如何自定义练习包中 \Question 使用的问题标签

如何自定义包\Question中使用的问题标签exercise

我正在使用该exercise包。我想对其进行自定义,以便生成的枚举\Question使用字母 ((a)、(b)、...) 而不是数字 (1. 2. ...)。

特别是,此代码

\documentclass{article}
\usepackage[noanswer]{exercise}

\begin{document}

\begin{Exercise}
\Question qwer
\Question asdf
\end{Exercise}

\end{document}

产生输出 运动输出

我想拥有

(a) qwer
(b) asdf

我怀疑该设置QuestionHeaderNB会起作用,但我还没有找到方法。

答案1

我在包文档中没有找到与此类定制相关的任何内容exercise,但以下内容有效:

\documentclass{article}
\usepackage[noanswer]{exercise}
\renewcommand{\QuestionNB}{(\alph{Question})\ }

\begin{document}

\begin{Exercise}
\Question qwer
\Question asdf
\end{Exercise}

\end{document}

在此处输入图片描述

相关内容