I'm working with examdesign multiple choice exams. I use this because I can make the questions go random.
I want to know how can I change the \choice style on the
{multiplechoice}
environment. I have this:Code: Select all
\documentclass[10pt]{examdesign}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage[top=2cm,left=2cm,right=2cm,bottom=2cm]{geometry}
\usepackage{amssymb, amsmath, amsbsy}
\usepackage{enumerate}
\usepackage{verbatim}
\usepackage{pifont}
\SectionFont{\large\sffamily}
\Fullpages
%\ContinuousNumbering
%\ShortKey
\DefineAnswerWrapper{}{}
\NumberOfVersions{2}
\IncludeFromFile{foobar.tex}
%\NoKey
%\NoRearrange
\ShortKey
\begin{document}
\begin{multiplechoice}[title={PSU}, resetcounter=yes, rearrange=yes, keycolumns=5]
\begin{question}
$5 \{- (4 - 5) - 3[-2 + 3 - (-8 - 3)]\} =$
\choice[!]{ $-175$ }
\choice{$150$}
\choice{$-50$}
\choice{$-40$}
\end{question}
\end{multiplechoice}
\end{document}
(a) -175
(b) 150
(c) -50
(d) -40
but what I want is something like:
A) -175
B) 140
C) -50
D) -40
Do you know what can I do?
Thanks.
