“examdesign” 类的多项选择题,有 2 列或 4 列选项

“examdesign” 类的多项选择题,有 2 列或 4 列选项

我需要在自定义的列数(比如 2 列或 4 列)中写下 MCQ 选项,以便有效利用试卷中的空白空间,并分配问题,尽可能减少页数。我看到了一些主题,它们描述了如何做到这一点,但在不同的课程中,例如考试课程。但是,我必须使用 examdesign 课程,因为我需要通过随机化问题的等级来创建多种形式的考试,而考试课程中没有这种课程。

这是我的 examdesign 类代码,它只生成一个列选项:

\documentclass[14pt]{examdesign}
\Fullpages
\NoKey 
\def\namedata{Name:}
\class{{ MCQ EXAM}}
\begin{document}
    \begin{multiplechoice}      
        \begin{question}
        One column choice
        \choice {choice 1}
        \choice {choice 2}
        \choice[!] {choice 3}
        \choice{choice 4} 
        \end{question}
        \end{multiplechoice}
\end{document}

One column choice mode

我希望找到一种方法来做出这样的选择[Four column choice mode[2]

答案1

这是一个可以接受的解决方案吗?

\documentclass[14pt]{examdesign}
\Fullpages
\NoKey 
\def\namedata{Name:}
\class{{ MCQ EXAM}}
\begin{document}
%% examcolumns sets 2 columns in every page of multiplechoice
\begin{multiplechoice}[examcolumns=2]     
\begin{question}
One column choice
\choice {choice 1}
\choice {choice 2}
\choice[!] {choice 3}
\choice{choice 4} 
\end{question}
\begin{question}
One column choice
\choice {choice 1}
\choice {choice 2}
\choice[!] {choice 3}
\choice{choice 4} 
\end{question}
\begin{question}
One column choice
\choice {choice 1}
\choice {choice 2}
\choice[!] {choice 3}
\choice{choice 4} 
\end{question}
\begin{question}
One column choice
\choice {choice 1}
\choice {choice 2}
\choice[!] {choice 3}
\choice{choice 4} 
\end{question}
\end{multiplechoice}
\end{document}

enter image description here

相关内容