考试课堂上两个正确选项形式不同

考试课堂上两个正确选项形式不同

\CorrectChoice我正在尝试定义一个新的正确选择命令,其格式与类中包含的格式不同exam,但不影响该命令。例如,我希望正确答案显示为红色,部分得分答案显示为蓝色。我尝试了以下方法:

\documentclass[10pt,answers]{exam}
\usepackage{xcolor}
\CorrectChoiceEmphasis{\color{red}}
\newcommand{\PartialCorrectChoice}[1]{
    \ifprintanswers
\CorrectChoice \textcolor{blue}{#1}
\else
\CorrectChoice #1
\fi
}

\begin{document}
\begin{questions}
\question
First question.
    \begin{choices}
    \choice Wrong
    \CorrectChoice Right
    \PartialCorrectChoice{Points for trying}
    \end{choices}
\question
Second question.
\begin{choices}
    \choice Wrong
    \CorrectChoice Right
    \choice No partial credit here
\end{choices}
\end{questions}
\end{document}

我得到:

在此处输入图片描述

这不太好看,我不知道如何让选项的字母也变成蓝色。我尝试使用\CorrectChoiceEmphinside of \ifprintanswers,但没有成功。

相关内容