I'm using the exam document class for an exam with a multiple choice section. To match the appearance of the scantron form, I'd like to use circled numbers in the choices and oneparchoices environments. I've got it working for the choices environment, but it's not working for the oneparchoices environment. Below is a minimal working example. Any suggestions?
\documentclass{exam}
\usepackage{pifont}
\renewcommand\choicelabel{\thechoice}
\renewcommand\choiceshook{
\addtocounter{choice}{191}
}
\renewcommand\thechoice{\ding{\arabic{choice}}}
\begin{document}
\begin{questions}
\question With the choices environment this
\begin{choices}
\choice does
\CorrectChoice work
\choice nicely
\end{choices}
\question With the oneparchoices environment this
\begin{oneparchoices}
\choice does
\CorrectChoice not
\choice work
\end{oneparchoices}
\end{questions}
\end{document}
