LaTeX/Teacher's Corner
Intro
[edit | edit source]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], the mathexm document class[3], or the exsheets package[4].
The exam class
[edit | edit source]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 | edit source]In the preamble you can specify the following lines :
\documentclass[a4paper,11pt]{exam}
\printanswers % If you want to print answers
% \noprintanswers % If you don't want to print answers
\addpoints % if you want to count the points
% \noaddpoints % if you don't want to count the points
% Specifies the way question are displayed:
\qformat{\textbf{Question\thequestion}\quad(\thepoints)\hfill}
\usepackage{color} % defines a new color
\definecolor{SolutionColor}{rgb}{0.8,0.9,1} % light blue
\shadedsolutions % defines the style of the solution environment
% \framedsolutions % defines the style of the solution environment
% Defines the title of the solution environment:
\renewcommand{\solutiontitle}{\noindent\textbf{Solution:}\par\noindent}
|
You can replace the 3 first lines with the following :
\documentclass[a4paper,11pt,answers,addpoints]{exam}
|
Document
[edit | edit source]- 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 | edit source]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.
Exsheets
[edit | edit source]Package exsheets
is an alternative to the exam class. It can be used to create exam papers, text books including solutions etc. Many options are available to style the output. Following a demonstrative example.
\documentclass{article}
\usepackage{booktabs}
\usepackage{exsheets}
\usepackage{tasks}
\SetupExSheets[question]{type=exam}
\SetupExSheets{
counter-format=se.qu,
counter-within=section,
headings=runin,
}
\begin{document}
\section{Chemistry}
\begin{question}{2}
Which one of the entries does not fit with the others?
\begin{tasks}(4)
\task mercury
\task iron
\task lead
\task zinc
\end{tasks}
\end{question}
\begin{question}{4}
Explain your decision for the answer above.
\blank[width=5\linewidth,linespread=1.5]{}
\end{question}
\section{Physics}
\settasks{
counter-format=(tsk[r]),
label-width=4ex
}
\begin{question}{1}
What is a funkyton?
\begin{tasks}(2)
\task A dancing electron
\task A dancing proton
\task A dancing neutron
\task A Dixie Dancing Duck
\end{tasks}
\end{question}
\begin{center}
\begin{tabular}{l*{\numberofquestions}{c}c}\toprule
Question & \ForEachQuestion{\QuestionNumber{#1}\iflastquestion{}{&} } & Total \\ \midrule
Points & \ForEachQuestion{\GetQuestionProperty{points}{#1}\iflastquestion{}{&} } & \pointssum* \\
Reached & \ForEachQuestion{\iflastquestion{}{&} } & \\ \bottomrule
\end{tabular}
\end{center}
\end{document}
Successor of exsheets
will be package xsim
.
References
[edit | edit source]- ↑ examdoc Using the exam document class
- ↑ Probsoln Creating problem sheets optionally with solutions
- ↑ mathexm documentation
- ↑ exsheets documentation Create exercise sheets and exams