2. And how do I change the spacing between adjacent choices?
I already went through the exam document class documentation and it did not answer my questions.
Code: Select all
\documentclass[answers, 10pt]{exam}
\usepackage[margin=0.75in]{geometry}
\usepackage{lipsum}
\usepackage{indentfirst}
\usepackage{enumerate}
\linespread{1}
\renewcommand{\rmdefault}{phv}
\renewcommand{\sfdefault}{phv}
\begin{document}\pagestyle{empty}\raggedright
\lipsum[1] \lipsum[1] \lipsum[1] \lipsum[1] \lipsum[1] \lipsum[2]
\begin{questions}
\question Which of the following is an example of the correct answer?
\begin{choices}
\CorrectChoice first answer
\choice second answer
\choice third answer
\choice fourth answer
\choice fifth answer
\end{choices}
\question Which of the following is an example of the correct answer?
\begin{choices}
\CorrectChoice first answer
\choice second answer
\choice third answer % This should be kept together with the first two choices
\choice fourth answer
\choice fifth answer
\end{choices}
\end{questions}
\end{document}