I am attempting to create a master document for creating multiple choice mathematics assessments. I want to be able to create two versions, the student version, and the teacher version. The student version should format all choices the same. The teacher version should indicate the correct answer choice by bold-facing the correct choice. I have seen this done, but it has been many years. I have attempted the following;
Code: Select all
\newcommand{\choice}{\textbf}
\newcommand{\distractor}{--??--}
\newcommand{\selector}{\ifthenelse{\equal{--??--}{T}}{\choice}{\distractor}}
Where I have inserted
--??--
, I cannot determine what to put. I want this to change by commenting out some signal line to produce one of the versions, while not commenting out the signal line produces the other.
I would be appreciative of any assistance.