没有可以在多列中显示选项的选项。
我尝试使用 multicol 包,但是失败了。
我们如何才能像这样在单独的列中显示选项:
(a) Choice1 (b) Choice2
(c) Choice3 (d) Choice4
这是一个examdesign
示例(取自邮政):
\documentclass[twocolumns]{examdesign}
\usepackage[demo]{graphicx}
\usepackage[margin=1in]{geometry}
\usepackage{lipsum}
\NoRearrange
\NoKey
\ContinuousNumbering
\class{Class Name}
\examname{Exam Name}
\def\namedata{Name: \hrulefill \\[4pt] Block: \hrulefill \, Date: \hrulefill}
\parindent 0ex
\begin{document}
\begin{multiplechoice}[title={Multiple-Choice}, examcolumns=2]
Directions
\begin{question}
Question
\choice{1}
\choice{2}
\choice[!]{3}
\choice{4}
\end{question}
\begin{question}
Question
\choice{1}
\choice{2}
\choice[!]{3}
\choice{4}
\end{question}
\begin{question}
Question
\choice{1}
\choice{2}
\choice[!]{3}
\choice{4}
\end{question}
\begin{question}
\lipsum[4]
I. Statement I \\[0.5em]
II. Statement2 \\[0.5em]
III. Statement3 \\
\choice{I only}
\choice{II only}
\choice{III only}
\choice[!]{I, II, and III}
\end{question}
\begin{question}
Question
\choice{1}
\choice{2}
\choice[!]{3}
\choice{4}
\end{question}
\begin{question}
\lipsum[4]
I. Statement I \\[0.5em]
II. Statement2 \\[0.5em]
III. Statement3 \\
\choice{I only}
\choice{II only}
\choice{III only}
\choice[!]{I, II, and III}
\end{question}
\begin{question}
Question
\choice{1}
\choice{2}
\choice[!]{3}
\choice{4}
\end{question}
\end{multiplechoice}
\end{document}