I am using the exam class. I am adding an additional question to a quiz, so I want to number it as question 9b. I see from here how to set the question number. But, it won't let me create question 9b (probably because question number must be numeric).
So I numbered the question 9 and added parts. Now I want the part to start as b. But I cannot find anything in the exam's documentation on how to set the part number. In fact, I can't find anything which discusses how to set the question number (which would lead me to the area on how to set the part number).
So, part (b): where did you find how to do that in exam's documentation, so I don't have to ask questions every single time I need to do something.
Code: Select all
\documentclass[fleqn,addpoints
%,answers
]{exam}
\usepackage{color} % Necessary for \shaded solutions
\usepackage{polynom}
\shadedsolutions
\bracketedpoints
\pointpoints{pt}{pts}
\everymath{\displaystyle}
\begin{document}
\begin{questions}
\setcounter{question}{8}
%\setcounter{part}{b}
\question[5]
\begin{parts}
\part Divide $v^6+1$ by $v-1$.
\begin{solution}
\polylongdiv{x^6+1}{x-1}
\end{solution}
\end{parts}
\end{questions}
\end{document}