exam.cls 包改变网格颜色

exam.cls 包改变网格颜色

我想改变exam.cls 包中的网格颜色默认情况下,它似乎是黑色(尽管文档中说默认颜色是灰色)。无论如何,我希望有非常浅的灰色但定义新的颜色似乎并没有改变任何东西。

以下是 MWE:

\documentclass[11pt]{exam}

\usepackage{color}
%\definecolor{GridColor}{gray}{0.8}
\definecolor{GridColor}{rgb}{0.75, 0.75, 0.75}

\begin{document} 
    \begin{questions}

    \addpoints
    \question[1] Schreibe unten hin was immer du willst.

    \fillwithgrid{\stretch{1}}
    \newpage

    \end{questions}
\end{document}

提前感谢你的帮助!

答案1

正如手册所述,您必须\colorgrids在之后立即发出宏\usepackage{color}

浅灰色网格的特写

\documentclass[11pt]{exam}

\usepackage{color}
\colorgrids
%\definecolor{GridColor}{gray}{0.8}
\definecolor{GridColor}{rgb}{0.75, 0.75, 0.75}

\begin{document} 
    \begin{questions}

    \addpoints
    \question[1] Schreibe unten hin was immer du willst.

    \fillwithgrid{\stretch{1}}
    \newpage

    \end{questions}
\end{document}

相关内容