更改文档类为“考试”的问题中括号内点的颜色

更改文档类为“考试”的问题中括号内点的颜色

我对 LaTex 还很陌生,我确实尝试使用文档类“exam”编写考试。到目前为止一切都很好,但现在我想让给定的问题点以不同于其余文本的颜色显示。有没有办法用“renewcommand”之类的命令来做到这一点……但应该更新哪个命令?

答案1

您可以使用命令\pointformat来更改点的打印方式。例如,

\documentclass{exam}
\usepackage{xcolor}
\begin{document}
\begin{questions}
    \pointformat{(\textcolor{red}{\thepoints})}
    \question[10] A question.
\end{questions}
\end{document}

exam中有更多细节和例子文档

相关内容