-
Notifications
You must be signed in to change notification settings - Fork 3
/
sample-aep.tex
38 lines (33 loc) · 1.34 KB
/
sample-aep.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
%-----------------------------------------------------------
% LaTeX template for University of Warwick exams
%-----------------------------------------------------------
% load the uow-exam class, the following options are supported:
% 'answers' shows solutions where specified
\documentclass[answers, aep]{uow-exam}
% configure the rubric
\ModuleCode{CSXXX} % module code: e.g. CS141
\ModuleName{Module Name} % module name: e.g. Functional Programming
\ExamPeriod{Summer 2021} % name of the exam period: e.g. Summer 2021
\ExamCode{CSXXX0\_A} % full paper code; don't forget to escape the _
\ExamType{24-hour window} % type of exam
\TimeAllowed{2 hours} % either 2 hours or 3 hours
% customise this depending on the format of your exam
\QuestionInstructions{There are \textbf{SIX} questions. All candidates should attempt \textbf{FOUR} questions.}
% use this if your exam paper contains sections or comment it out otherwise
\NoBreakAfterQuestions
\begin{document}
\MakeHeading
\begin{questions}
\question This question is about ...
\begin{parts}
\part[1] This is a part of a question. \droppoints
\begin{solution}
This is only generated if the \texttt{answers} option is specified.
\end{solution}
\end{parts}
\question This question is about ...
\begin{parts}
\part[2] Another part. \droppoints
\end{parts}
\end{questions}
\end{document}