I have three questions about an exam I am writing.
- How can I align the first answer choice up with the first word of the question?
- How do I get rid of the line between the answer choices in the first question.
- How can I space out the columns in the first answer.
Code: Select all
\documentclass[12pt]{exam}
\usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots.
\geometry{letterpaper} % ... or a4paper or a5paper or ...
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{multicol}
\usepackage{amsmath}
\begin{document}
\begin{questions}
\setlength{\columnsep}{45pt}
\setlength{\columnseprule}{1pt}
\begin{multicols*}{2}
\fullwidth{\textbf{Read each question. Then write the letter of the correct answer on your paper.}}
\question What is the solution to \[3x-6=4x+8?\]
\begin{multicols}{2}
\begin{choices}
\choice -2
\choice 2
\choice -14
\choice 14
\choice -1
\end{choices}
\end{multicols}
\end{multicols*}
\end{questions}
\end{document}