forked from mbg/uow-exam
-
Notifications
You must be signed in to change notification settings - Fork 2
/
uow-exam-template.tex
50 lines (43 loc) · 1.5 KB
/
uow-exam-template.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
39
40
41
42
43
44
45
46
47
48
49
50
%-----------------------------------------------------------
% LaTeX template for University of Warwick exams
%-----------------------------------------------------------
% load the uow-exam class, the following options are supported:
% 'answers' shows solutions where specified
\documentclass[answers]{uow-exam}
% configure the heading
\ModuleCode{CSXXX0}
\ModuleName{Module name}
\ExamPeriod{Summer 2018}
\ExamsName{Second Year Examinations}
\TimeAllowed{2 hours}
\QuestionInstructions{Answer \textbf{FOUR} questions.}
\OtherInstructions{Read carefully the instructions on the answer book and make sure that the particulars required are entered on \textbf{each} answer book. \\
No calculators are allowed.}
% 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}
\section{Answer \textbf{TWO} questions.}
\hspace{-0.8cm} Section introduction.
\question This question is about ....
\begin{parts}
\part[2] Another part. \droppoints
\end{parts}
\question This question is about ....
\begin{parts}
\part[2] Another part. \droppoints
\end{parts}
\end{questions}
\end{document}