summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/ximera/src/optionsxourse.dtx
blob: 1217fce19981bba1ee21d601b124554b8ea8e0bd (plain)
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
%    \begin{macrocode}
%<*classXourse>
%    \end{macrocode}
% \begin{macro}{notoc}
%    The default behavior of the class is to provide a table of contents listing all activities in the course. This option will supress this table of contents.
%    \begin{macrocode}
\newif\ifnotoc
\notocfalse
\DeclareOption{notoc}{\notoctrue}
%    \end{macrocode}
% \end{macro}
% \begin{macro}{nonewpage}
%    The default behavior of the class is to start each activity on a new page. This option will start activities without making a new page.
%    \begin{macrocode}
\newif\ifnonewpage
\nonewpagefalse
\DeclareOption{nonewpage}{\nonewpagetrue}
%    \end{macrocode}
% \end{macro}
%    \begin{macrocode}
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{ximera}}
\ProcessOptions\relax
\LoadClass{ximera}
%    \begin{macrocode}
%</classXourse>
%    \end{macrocode}