I want to create an multiple choices question with this indenting format
1. ########
A. ###
B. ###
C. ###
2. ########
########
A. ###
B. ###
C. ###
The choices have same indentation as the question text.
But, using the default exam documentclass, I get this format
1. ########
A. ###
B. ###
C. ###
2. ########
########
A. ###
B. ###
C. ###
Hence, I try to set the \leftmargin to 0pt inside the choices environment to get what I want.
\documentclass{exam}
\begin{document}
\begin{questions}
\question
How old are you?
\begin{choices}
\setlength{\leftmargin}{0pt}
\choice 14
\choice 17
\choice 19
\choice 20
\choice 23
\end{choices}
\end{questions}
\end{document}
But, It get nowhere.
So, What is the right way to set indentation of choice in exam documentclass?
\setlength{\leftmargin}{50pt}%to\settowidth{\leftmargin}{W.\hskip\labelsep\hskip 0em}gives the desired result of indenting that I want. Though I'm pretty confused with the second argument of the\settowidthabove. – Mas Adit Apr 13 '13 at 14:52