LaTeX class files for OU Supps. If you like this repository, you'll surely also like Robert Hasson's ouunit package: https://github.com/RobertHasson/ouunit Sign up to our mailing list to receive updates: https://www.jiscmail.ac.uk/OU-TEX-ANNOUNCEMENTS
"What's the best way to obtain separate solutions to exam papers for external markers?"
Define something like this in the preamble:
\newenvironment{questiontext}{}{}
And use the questiontext environment as a wrapper around the text of the question:
\begin{questiontext}
The text of the question goes here.
\end{questiontext}
\begin{solution}
The solution to the question goes here
\end{solution}
Then, when you want to create a solutions document without the questions appearing, you pass the “solutions” option to ouexam.cls, and redefine the questiontext environment with the following:
From a conversation with Alvaro:
"What's the best way to obtain separate solutions to exam papers for external markers?"
Define something like this in the preamble:
\newenvironment{questiontext}{}{}
And use the
questiontext
environment as a wrapper around the text of the question:Then, when you want to create a solutions document without the questions appearing, you pass the “solutions” option to ouexam.cls, and redefine the questiontext environment with the following:
\newenvironment{questiontext}{\begin{comment}}{\end{comment}}
This will make everything within questiontext not appear in the output.