Many choices on one sheet

Version 1 (Pieter Van den Hombergh, 04/06/2014 05:35 pm)

1 1
h1. Many choices on one sheet
2 1
3 1
Having a few sheets to handle when doing the post exam processing is nice.
4 1
One page per candidate is best (fewer and they would have to write on the same paper, not good ;-)).
5 1
6 1
The trick is to use short texts for 'Question', small fonts and above all use multi columns
7 1
8 1
In the preamble:
9 1
<pre>
10 1
\usepackage{multicol}
11 1
</pre>
12 1
13 1
The generating part of my exam now looks like this:
14 1
<pre>
15 1
\begin{examcopy}{x}
16 1
\coverpage % specific cover page.
17 1
\shufflegroup{general}
18 1
\insertgroup{general}
19 1
\AMClabel{lastpage}
20 1
\AMCcleardoublepage    
21 1
\AMCformBegin    
22 1
\answerFormHead
23 1
\begin{multicols}{2}
24 1
\AMCform
25 1
\end{multicols}
26 1
\AMCcleardoublepage
27 1
\end{examcopy}
28 1
29 1
</pre>