LaTeX/Teacher's Corner
| Getting Started
Common Elements
Mechanics Technical Texts
Special Pages Special Documents
Creating Graphics Programming Miscellaneous Help and Recommendations Appendices |
Contents |
Intro [edit]
LaTeX has specific features for teachers. We present the exam class[1] which is useful for designing exams and exercises with solutions. Interested people could also have a look at the probsoln package[2] or the mathexm document class[3].
The exam class [edit]
We present the exam class. The exam class is well suited to design exams with solutions. You just have to specify in the preamble if you want the solutions to be printed or not. You can also count the number of points.
Preamble [edit]
In the preamble you can specify the following lines :
|
\documentclass[a4paper,11pt]{exam} |
You can replace the 3 first lines with the following :
|
\documentclass[a4paper,11pt,answers,addpoints]{exam} |
Document [edit]
- The exam is included in the questions environment.
- The command \question introduces a new question.
- The number of points is specified in squared brackets.
- The solution is given in the solution environment. It appears only if \printanswers or answers as an option of the \documentclass are specified in the preamble.
Here is an example :
\begin{questions} % Begins the questions environment \question[2] What is the solution? % Introduces a new question which is worth 2 points \begin{solution} Here is the solution \end{solution} \question[5] What is your opinion? \begin{solution} This is my opinion \end{solution} \end{questions}
It is also possible to add stuff only if answers are printed using the \ifprintanswers command.
\ifprintanswers Only if answers are printed \else Only if answers are not printed \fi
Introduction [edit]
The macro \numquestions gives the total number of questions. The macro \numpoints gives the total number of points.
\begin{minipage}{.8\textwidth} This exam includes \numquestions\ questions. The total number of points is \numpoints. \end{minipage}
The backslash after \numquestion prevents the macro from gobbling the following whitespace as it normally would.