1 % \begin{meta-comment} <general public licence>
3 %% exercise package -- useful macros for setting exercises with answers
4 %% Copyright (c) 2001--2003 Mark Wooding
6 %% This program is free software; you can redistribute it and/or modify
7 %% it under the terms of the GNU General Public License as published by
8 %% the Free Software Foundation; either version 2 of the License, or
9 %% (at your option) any later version.
11 %% This program is distributed in the hope that it will be useful,
12 %% but WITHOUT ANY WARRANTY; without even the implied warranty of
13 %% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 %% GNU General Public License for more details.
16 %% You should have received a copy of the GNU General Public License
17 %% along with this program; if not, write to the Free Software Foundation,
18 %% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 % \begin{meta-comment} <Package preambles>
22 %<+package>\NeedsTeXFormat{LaTeX2e}
23 %<+package>\ProvidesPackage{exercise}
24 %<+package> [2003/08/25 1.1 Exercies with answers]
29 %% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
30 %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
31 %% Digits \0\1\2\3\4\5\6\7\8\9
32 %% Exclamation \! Double quote \" Hash (number) \#
33 %% Dollar \$ Percent \% Ampersand \&
34 %% Acute accent \' Left paren \( Right paren \)
35 %% Asterisk \* Plus \+ Comma \,
36 %% Minus \- Point \. Solidus \/
37 %% Colon \: Semicolon \; Less than \<
38 %% Equals \= Greater than \> Question mark \?
39 %% Commercial at \@ Left bracket \[ Backslash \\
40 %% Right bracket \] Circumflex \^ Underscore \_
41 %% Grave accent \` Left brace \{ Vertical bar \|
42 %% Right brace \} Tilde \~}
45 % \begin{meta-comment}
49 \describespackage{exercise}
50 \let\epsilon\varepsilon
51 \errorcontextlines\maxdimen
57 %^^A-------------------------------------------------------------------------
58 % \section{User guide}
60 % The \package{exercise} package allows you to typeset exercises and keep the
61 % answers together with the questions in your source (so they don't get
62 % lost) but typeset them all together at the end of your document.
64 % \subsection{Exercises and answers}
66 % \DescribeEnv{exercise}
67 % Exercises are typset in an \env{exercise} environment. This takes no
68 % arguments. There's a counter for exercises, named |exercise|, and you can
69 % cross-reference exercises in the usual way.
71 % \DescribeMacro\answer
72 % If you want to include an answer for your exercise, just say |\answer|
73 % followed by your answer. The rest of the text up to the end of the
74 % \env{exercise} environment is considered to be the answer, and is stored
75 % away until asked for. This material can contain anything you like. It
76 % \emph{isn't} a moving argument.
79 %\begin{demo}[w]{The \env{exercise} environment}
81 %Show that if $F\colon \{0, 1\}^k \times \{0, 1\}^* \to \{0, 1\}^L$
82 %is a $(t, q + 1, \epsilon)$-secure PRF, then $F$~is also a
83 %$(t, q, \epsilon + 2^{-L})$-secure MAC.
85 %Let~$A$ be an adversary attacking~$F$ as a MAC. Consider the
91 % \DescribeMacro\skipanswer
92 % The |\skipanswer| command is similar, but just skips over the answer rather
93 % than writing it to the output file. It does nothing at all with counters
94 % -- it's as if there was no answer given at all.
96 % It's OK to use commands like |\answer| and |\skipanswer| in your own
97 % macros as long as they're the \emph{last} token. You can therefore say
100 %\newcommand{\evenanswer}{%
102 % {\isodd{\value{exercise}}}%
107 % to get just the answers to the odd-numbered problems. (If you don't like
108 % \package{ifthen} then you'll need to play with |\expandafter| for a bit.)
110 % \subsection{The answers file}
112 % \DescribeMacro\answrite
113 % Answers are accumulated into a file, to be read later. Additional material
114 % can be added to the file using the |\answrite| macro, which just writes its
115 % argument. Note that this is a \emph{moving} argument, so fragile commands
116 % need |\protect|ing.
118 % \DescribeMacro\exctrcheck
119 % It's common to divide up the answers by section. You can tell the package
120 % to check a collection of counters and perform actions if they've changed
121 % since last time, giving you a chance to write the correct decorations to
122 % the answers file. This is done by saying
123 % \syntax{"\\exctrcheck{"<counter>"}{"<action>"}"}. Then, each |\answer|
124 % command checks to see if \<counter> has changed since last time, and if it
125 % has, it does \<action>, For example,
127 %\exctrcheck{section}
128 % {\answrite{\protect\subsection*{Section \thesection}}}
130 % starts a new (unnumbered) subsection in the answers for each section in the
133 % \subsection{Style tweaks}
135 % The \env{exercise} environment is very simple, and can be easily rewritten
136 % to fit in with your style preferences. If you like exercises to look like
137 % theorems, the easiest thing to do is say something like
139 %\newtheorem{doexercise}[exercise]{\exercisename}
140 %\renewenvironment{exercise}{\exfix\doexercise}{\enddoexercise}
142 % This makes the environment use the existing exercise counter. If you don't
145 %\newtheorem{doexercise}[othercounter]{\exercisename}
146 %\renewenvironment{exercise}{\exfix\doexercise}{\enddoexercise}
147 %\let\theexercise\theothercounter
149 % and all will be well.
151 % \DescribeEnv{doanswer}
152 % Answers are typeset in a \env{doanswer} environment, which is given one
153 % argument: the exercise number (as set by |\theexercise|). This can be
154 % modified to do whatever you like.
156 % \DescribeMacro\exfix
157 % The |\exfix| is a convenient hook which is run both in the \env{exercise}
158 % and \env{doanswer} environments by default. The current implementation
159 % just skips a level of \env{enumerate} depth, which usually means that
160 % \env{enumerate} lists will go (a), (b), (c), \ldots\ rather than 1, 2, 3,
163 % \subsection{Lists in paragraphs}
165 % \DescribeEnv{parenum}
166 % Answers to subparts tend to be compressed together into a single
167 % paragraph. It's nice, when you do this, not to have to worry about losing
168 % your numbering of subparts. The \env{parenum} environment provides an
169 % enumerated list in a paragraph. So, for example, you can say something
171 %\begin{demo}[w]{Example of \env{parenum}}
173 %A PRG $g\colon \{0, 1\}^k \to \{0, 1\}^L$ is \emph{trivial} if
176 %\item Show that trivial PRGs exist.
177 %\item Show that a non-trivial $(t, \epsilon)$-secure PRG is a
178 % $(t, \epsilon + 2^{k-L})$-secure one-way function.
182 %\item The identity function is a trivial PRG: the real and random
183 % games are identically distributed.
184 %\item Let~$A$ be an adversary attempting to invert~$g$: then we
185 % can construct a distinguisher~$B$ as follows \ldots
190 % \subsection{And finally}
192 % \DescribeMacro\answers
193 % In order to extract your answers, say |\answers|.
194 %\begin{demo}[w]{The \texttt{\string\answers} command}
199 % The |\answers| command has an optional argument, which is the file to read
200 % in. This allows you to make `answer booklet' documents, by saying
205 % If you don't give a file extension, then |.ans| is appended automatically.
210 %^^A-------------------------------------------------------------------------
211 % \section{Implementation}
217 % \subsection{Initialization}
219 % The \textsf{within} option is handled by the \package{mdwkey} package.
222 \RequirePackage{mdwkey}
225 % \begin{macro}{\ex@within}
227 % When the \textsf{within} option is seen, we set a command |\ex@within| to
228 % the correct code, to be executed later when we've made our minds up.
232 \mkdef{exercise:opts}{within}{%
234 \@addtoreset{exercise}{#1}%
235 \toks@\expandafter{\csname the#1\expandafter\endcsname%
236 \expandafter.\theexercise}%
237 \edef\theexercise{\the\toks@}%
243 % \begin{macro}{\ex@opts}
245 % The |\ex@opts| macro just runs the \package{mdwkey} kit to parse an option
249 \def\ex@opts{\mkparse{exercise:opts}}
253 % Now do the options thing.
256 \DeclareOption*{\expandafter\ex@opts\expandafter{\CurrentOption}}
260 % Set up the |exercise| counter, and number it within some other sort of
261 % counter as appropriate.
264 \newcounter{exercise}\ex@within
267 % We also need the \package{sverb} package in order to do the delaying of the
271 \RequirePackage{sverb}
274 % \subsection{Checking for counter changes}
276 % \begin{macro}{\ex@ctrcheck}
278 % The counter checking state is stored here. It's initially empty.
285 % \begin{macro}{\exctrcheck}
287 % Adding a counter to the check list is relatively easy. We expand the
288 % current list into a token register, add the new material to the end, and
289 % put the list back in our macro using |\edef|. The `last' value of the
290 % counter is set to |\relax|, to force out the change on the next |\answer|.
293 \def\exctrcheck#1#2{%
294 \toks@\expandafter{\ex@ctrcheck\ex@ctrdo{#1}{#2}}%
295 \edef\ex@ctrcheck{\the\toks@}%
296 \global\expandafter\let\csname ex@ctrlast@#1\endcsname\relax%
301 % \begin{macro}{\ex@ctrdo}
303 % Here we actually check to see whether a counter has changed and execute the
308 \edef\@tempa{\csname the#1\endcsname}%
309 \expandafter\ifx\csname ex@ctrlast@#1\endcsname\@tempa\else%
311 \global\expandafter\let\csname ex@ctrlast@#1\endcsname\@tempa%
317 % \subsection{The \env{exercise} environment}
319 % \begin{macro}{\exercisename}
321 % We store the string to print for each exercise in |\exercisename| as a
322 % half-hearted attempt at internationalization.
325 \providecommand\exercisename{Exercise}
329 % \begin{macro}{\exfix}
331 % This is a dumping ground for style fixing common to both exercises and
332 % answers. Here, we bump on the \env{enum} depth counter, so that it skips
333 % labelling with digits.
336 \def\exfix{\advance\@enumdepth\@ne}
340 % \begin{environment}{exercise}
342 % This is pretty simple. The environment is list-based, with the number set
343 % in bold in a label.
347 \refstepcounter{exercise}%
349 \trivlist\advance\itemindent\labelsep%
350 \item[\textbf{\exercisename\ \theexercise}]%
352 \let\endexercise\endtrivlist
356 % \subsection{Answers}
358 % We need a file in which to store our answers.
364 % \begin{macro}{\ex@ansfilename}
366 % In case anyone has a better idea for a filename than our default, we
370 \def\ex@ansfilename{\jobname.ans}
374 % We open the file at the end of the preamble, to give the user a chance to
375 % say |\nofiles|, or change |\ex@ansfilename|.
380 \immediate\openout\ex@ansfile=\ex@ansfilename\relax%
386 % \begin{macro}{\answrite}
388 % This writes stuff to the answers file. We make sure that it's
389 % appropriately protected, so that you can insert section headings and so on.
395 \let\protect\@unexpandable@protect%
396 \immediate\write\ex@ansfile{#1}%
403 % \begin{macro}{\answer}
405 % The |\answer| macro needs to read until the end of the enclosing
406 % \env{exercise} environment (or whatever).
409 \def\answer{\sv@readenv\ex@answer}
412 % Now for the main guts.
420 % First of all, check to see whether any counters have changed.
426 % Start a \env{doanswer} environment in the file.
429 \answrite{\noexpand\begin{doanswer}{\theexercise}}%
432 % Set catcodes to be strange, and read lines one-at-a-time, writing them to
433 % the file. When finished, continue at |\ex@endanswer|.
436 \let\do\@makeother\dospecials%
438 \sv@read{#1}\answrite{\ex@endanswer#2}%
442 % When that's done, we wind up here.
447 \answrite{\noexpand\end{doanswer}}%
453 % \begin{macro}{\skipanswer}
455 % This is much simpler.
458 \let\skipanswer\ignore
462 % \begin{macro}{\answers}
464 % The |\answers| macro closes the file, makes sure that future
465 % \env{exercise}s with answers cause an error, and reads in the file.
469 \@ifnextchar[{\answers@i\input}{\answers@i\@input[\ex@ansfilename]}%
471 \def\answers@i#1[#2]{%
472 \immediate\closeout\ex@ansfile%
473 \global\let\answrite\exerr@toolate%
474 \ex@withext{#1}{#2}{ans}%
476 \def\q@delim{\q@delim}
477 \def\ex@withext#1#2#3{%
478 \edef\next@##1{\noexpand\ex@ext@i{##1}{#2}{#3}#2.\noexpand\q@delim}%
481 \def\ex@ext@i#1#2#3#4.#5\q@delim{%
482 \ifx\q@delim#5\q@delim\def\next@{#1{#2.#3}}%
483 \else\def\next@{#1{#2}}\fi%
489 % \begin{environment}{doanswer}
491 % A very simple environment. We set the exercise number in bold and then
492 % just write the text.
497 \trivlist\advance\itemindent\labelsep%
500 \let\enddoanswer\endtrivlist
504 % \subsection{Lists inside paragraphs}
506 % \begin{environment}{parlist}
508 % The \env{parlist} environment is a trimmed-down version of a normal list.
509 % We todge the |\item| command, make |\list| and |\trivlist| make errors, and
510 % do various normal list things.
514 \let\@trivlist\exerr@parlist%
516 \let\makelabel\relax%
525 % \begin{macro}{\pl@item}
527 % This is the implementation of |\item| within a \env{parlist}. The main
528 % interesting point is the game with boxes, which has the objective of
529 % extracting the text of the item, together with any style changes set by
530 % |\makelabel|, but without any stupid bits of glue, or |\llap| or anything
534 \def\pl@item{\@ifnextchar[\pl@item@i{\pl@item@i[\@itemlabel]}}
536 \if@nmbrlist\refstepcounter{\@listctr}\fi%
537 \setbox\z@\hbox{\makelabel{\global\setbox\@ne\hbox{#1}}}%
538 \ifvmode\leavevmode\else\unskip\hskip1em\fi\box\@ne~\ignorespaces%
543 % \begin{macro}{\useparlist}
545 % We just set the \env{list} environment to use \env{parlist}.
548 \def\useparlist{\let\list\parlist\let\endlist\relax}
552 % \begin{environment}{parenum}
554 % Very simple, this. Note that we don't run |\endenumerate|, because that's
555 % |\let| to |\endlist|.
558 \def\parenum{\useparlist\enumerate}
559 \let\endparenum\endparlist
563 % \subsection{Errors}
567 \PackageError{exercise}{Too late now for \string\answrite}{%
568 You can't write answers after you've read the file in. I've^^J%
569 ignored the text you attempted to write. This is why answers^^J%
570 go at the end of a book!%
574 \PackageError{exercise}{You can't nest a `list' inside a `parlist'.}{%
575 I've found a `list' or `trivlist' environment nested inside^^J%
576 a `parlist'. This isn't allowed. You're probably doomed now.%
584 % \hfill Mark Wooding, \today