我用它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}
输出结果如下:
我希望能够自定义problem
和answers
环境,更确切地说,将问题编号放在里面\fbox
并更改文本大小,以及选项的编号方式 - 我想将大写字母 A,B,C,... 放在里面\fbox
,但我不知道如何做到这一点。
答案1
尝试
\usepackage[pointsonleft,showgrayletters,
nototals,forpaper,nosolutions,useforms,usexkv]{eqexam}
并把
\def\exlabelformat{\fbox{\textbf{\theeqquestionnoi.}}\ }
在你的序言中。