我正在尝试格式化考试类别中的问题编号,我希望“问题”一词和问题编号以粗体显示,但问题本身以普通文本显示。
阅读考试类文档时,我发现可以使用来获取问题编号,后来它说如果是的话\thequestion
也可以使用来获取,但是当我尝试重新定义命令如下时:\thetitlequestion
\question
\documentclass[answers,a4paper,12pt]{exam}
\renewcommand{\questionlabel}{\textbf{Question \thequestiontitle} \quad \thequestiontitle}
\begin{document}
\begin{questions}
\question{This is a good example}
\end{questions}
\end{document}
我的问题号重复了,为什么?我误解了什么或者做错了什么?
最后,我会喜欢用粗体显示的问题和数字,我试过,\qformat
但它需要水平填充,所以它会把问题放在最后。