A supervision is part of the way you get taught at the University of Cambridge. They are small (typically 2-3 students) teaching sessions where you go through some work
This is the successor of my original supervision class. The motivation for the original was to have a single place to put all the code required for my supervision work rather than copy and pasting every single time. Over time this caused the supervision class to become very bloated with lots of things being included that are only relevant for a few courses. I'm now tearing it apart and making it more modular.
The class extends the exam document class and thus supports most of its features.
Git clone or download the package and then symlink it into the appropriate place (different depending on os and laTeX distibution). On osx with TeXlive running the following from the downloaded folder works (you may need to create that folder first).
ln -s $PWD ~/Library/texmf/tex/latex/localAlternatively, put the supervision.cls file next to your document.
If the course will have several supervisions then create a course.sty (otherwise just put this at the top).
\ProvidesPackage{course}
\Course{Course Name}
\author{Daniel Chatfield}Then in supervision-1.tex:
\documentclass{supervision}
\usepackage{course}
\Supervision{3}
\begin{document}
\begin{questions}
\question[2]
This is the first question, it is worth 2 marks
\begin{solution}
This is the solution
\end{solution}
\question
\begin{parts}
\part
This part has no marks
\end{parts}
\SetQuestionNumber{4}
\question
We have skipped a question by manually setting the question number
\end{questions}
\end{document}- Palatino font
- Remove the "Solution" text from the solution box
- Show the solutions by default (pass the
hidesolutionsoption to hide them) - Use "marks" instead of "points" and display in box in right margin