考试文档类中的题目编号颜色

考试文档类中的题目编号颜色

我正在处理考试文档类。我该如何给问题编号着色。也就是说,我希望一些问题编号显示为红色。我该怎么做?

答案1

这可能就是你想要的。

\documentclass{exam}
\usepackage{color}

\renewcommand{\questionlabel}{\color{red}\thequestion.}

\begin{document}
\begin{questions}
    \question Question
\end{questions}
\end{document}

在此处输入图片描述

编辑:

Scott Seidman 指出,它改变了全部问题。如果您只想更改一个问题编号,您可以使用:

\documentclass{exam}
\usepackage{color}

\let\oldquestionlabel=\questionlabel

\begin{document}
\begin{questions}
    \renewcommand{\questionlabel}{\color{red}\thequestion.}
    \question Question 1
    \renewcommand{\questionlabel}{\oldquestionlabel}
    \question Question 2
\end{questions}
\end{document}

在此处输入图片描述

相关内容