我正在使用该exercise
包,并且我希望练习的问题不使用编号,而是使用字母,例如 a.、b.、c. 等等。
我尝试使用
\renewcommand\theQuestion{\alph{Question}}
但它什么都没改变。不确定我应该改变哪个计数器...
梅威瑟:
\documentclass{article}
\usepackage[lastexercise]{exercise} % for exercise environment
\renewcommand\theQuestion{\alph{Question}}
\begin{document}
\begin{Exercise}
\Question first question.
\Question second question.
\end{Exercise}
\end{document}
答案1
没关系,我意识到我可以\QuestionNB
像这样重新定义命令,从而找到了解决方案:
\renewcommand{\QuestionNB}{\alph{Question}.\ }
\renewcommand{\theQuestion}{\alph{Question}.} % this ensures that references are also using the correct format
从而产生预期的效果。
(在原始包中,该命令定义为\newcommand{\QuestionNB}{\arabic{Question}.\ }