在 EqExam 包中自定义多项选择题

在 EqExam 包中自定义多项选择题

我用它eqexam来创建带有随机答案的多项选择题。让我们来看以下示例:

\documentclass{article}
\usepackage[allowrandomize,nopoints,proofing]{eqexam}%

\begin{document}

\useRandomSeed{2012}
\begin{exam}{Exam1}
\begin{problem}
In what year did Columbus sail the ocean blue?
\begin{answers}{2}
    \bChoices[random]
    \Ans0 1st random choice\eAns
    \Ans1\label{eq} 2nd (the correct) random choice\eAns
    \Ans0 3rd random choice\eAns
    \Ans0 4th random choice\eAns
    \Ans0 5th random chioce\eAns
    \eFreeze
    \Ans0 None of these\eAns
    \eChoices
\end{answers}
\end{problem}
\end{exam}

\end{document}

输出结果如下: PDF 输出

我希望能够自定义problemanswers环境,更确切地说,将问题编号放在里面\fbox并更改文本大小,以及选项的编号方式 - 我想将大写字母 A,B,C,... 放在里面\fbox,但我不知道如何做到这一点。

答案1

尝试

\usepackage[pointsonleft,showgrayletters,
nototals,forpaper,nosolutions,useforms,usexkv]{eqexam}

并把

\def\exlabelformat{\fbox{\textbf{\theeqquestionnoi.}}\ }

在你的序言中。

相关内容