summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/exesheet/exesheet.dtx
blob: c703f6434bd451876c403f6786a38f8ccca2014b (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
% \iffalse meta-comment
%
% Copyright (C) 2020 by Antoine Missier <antoine.missier@ac-toulouse.fr>
% ----------------------------------------------------------------------
% 
% This file may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3
% of this license or (at your option) any later version.
% The latest version of this license is in:
%
%    http://www.latex-project.org/lppl.txt
%
% and version 1.3 or later is part of all distributions of LaTeX 
% version 2005/12/01 or later.
%
% \fi
%
% \iffalse
%<*driver>
\ProvidesFile{exesheet.dtx}
%</driver>
%<class|package>\NeedsTeXFormat{LaTeX2e}[2005/12/01]
%<class>\ProvidesClass{exesheet}
%<package>\ProvidesPackage{exesheet}
%<*class|package>
    [2020/07/22 v1.0 .dtx exesheet file]
%</class|package>
%
%<*driver>
\documentclass{ltxdoc}
% uncomment the following lines if you want to use the exesheet class instead of ltxdoc
%\usepackage{doc}
%\AtBeginDocument{\MakeShortVerb{\|}}
%\providecommand\marg[1]{{\ttfamily\{}\meta{#1}{\ttfamily\}}}
%\providecommand\oarg[1]{{\ttfamily[}\meta{#1}{\ttfamily]}}
\usepackage[notoc]{exesheet}
\usepackage{schooldocs}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{lmodern}
\usepackage{multicol}
\usepackage{hyperref}
\usepackage{sectsty}
\usepackage{pstricks}
\psset{unit=1cm}
\geometry{textwidth=355pt,vmarginratio=1:1,hmarginratio=3:2}
% altered by schoodocs, now very close from the default geometry used by ltxdoc

\newcommand{\ds}{\displaystyle}
\newcommand{\bs}{\textbackslash}
\newcommand{\TODO}{\textcolor{green}{TODO}}

\definecolor{darkbrown}{rgb}{0.5,0.1,0.1}
\allsectionsfont{\sffamily\color{darkbrown}}
\renewcommand{\labelexercisestyle}{\rmfamily\color{black}}
\renewcommand{\labelsubpartstyle}{\rmfamily\color{black}}
\renewcommand{\annexstyle}{\rmfamily\color{black}\MakeUppercase}
\renewcommand{\correctionstyle}{\rmfamily\color{correctioncolor}}

\displaypts
%\diplaynotes gives a non desired margin ratio here
% following instructions simulate \displaynotes without altering the margin ratio
\setlength{\marginparwidth}{\oddsidemargin}
\addtolength{\marginparwidth}{1in}
\addtolength{\marginparwidth}{-\marginparsep}
\setlength{\marginparwidth}{0.8\marginparwidth}
\setboolean{marginpoints}{true}
\setboolean{marginfullnotes}{true}

\DisableCrossrefs         
%\CodelineIndex
%\RecordChanges

\title{The \textsf{exesheet} class and package}%\thanks{This document
%    corresponds to \textsf{exesheet}~\fileversion, dated \filedate.}}
%\author{Antoine Missier \\ \texttt{antoine.missier@ac-toulouse.fr}}
\subject{Antoine Missier \\
    \texttt{antoine.missier@ac-toulouse.fr}}
\date{July 22, 2020, \fileversion}
\hypersetup{%
    colorlinks, 
    linkcolor=blue,
    pdftitle={exesheet}, 
    pdfsubject={LaTeX class and package}, 
    pdfauthor={Antoine Missier}
    }
\begin{document}
  \DocInput{exesheet.dtx}
\end{document}
%</driver>
% \fi
%
% \CheckSum{637}
%
% \CharacterTable
%  {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
%   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
%   Digits        \0\1\2\3\4\5\6\7\8\9
%   Exclamation   \!     Double quote  \"     Hash (number) \#
%   Dollar        \$     Percent       \%     Ampersand     \&
%   Acute accent  \'     Left paren    \(     Right paren   \)
%   Asterisk      \*     Plus          \+     Comma         \,
%   Minus         \-     Point         \.     Solidus       \/
%   Colon         \:     Semicolon     \;     Less than     \<
%   Equals        \=     Greater than  \>     Question mark \?
%   Commercial at \@     Left bracket  \[     Backslash     \\
%   Right bracket \]     Circumflex    \^     Underscore    \_
%   Grave accent  \`     Left brace    \{     Vertical bar  \|
%   Right brace   \}     Tilde         \~}
%
%
% \changes{v0.0}{2010/09/01}{Initial personal version}
% \changes{v0.9}{2020/01/02}{Initial documentation in french}
% \changes{v1.0}{2020/07/22}{Initial public version with documentation in english}
%
% \GetFileInfo{exesheet.dtx}
%
% \maketitle
% \tableofcontents
%
% \section{Introduction}
%
% The \textsf{exesheet} \emph{package} is used for typesetting exercise or exam sheets.
% In addition, the \textsf{exesheet} \emph{class} loads the \textsf{schooldocs} package.
% This one makes adjustments for margins and title and defines various layout styles 
% with particular header and footer, appropriate for exercise sheets (among others).
% See the \textsf{schooldocs} documentation for more details.
% The \textsf{exesheet} \emph{class} is based on \textsf{article} 
% and has the same options.
%
% Many other packages are dedicated to exercise sheets.
% Most propose to encapsulate each exercise in an environment
% while \textsf{exesheet} begins each exercise with the |\exercise| command, 
% which works like a subsection (with same features)
% and is suitable for documents consisting exclusively of exercises.
% The package provides also alternative formatting, 
% more relevant for short exercises.
%
% Another specificity of the \textsf{exesheet} package is specific settings
% for enumeration lists, different from \LaTeX\ standard settings,
% usefull for the numbering of questions or answers inside an exercise.
%
% Other packages provide often more or less elaborate mechanisms
% to manage the placement of answers.
% \textsf{exesheet} has no such ambitions:
% for all exercises of the sheet, we can display subject only, 
% answer anly or both, but always at the place they are inserted
% in the source file. On the other hand this choice may be very flexible:
% we can do a correct version for all exercises together, or a correct version per exercise,
% per part (subpart of exercise), per question, per sub-question.
%
% Finally the original fonctionality of this package is the display of a detailed marking scheme,
% with optional explanations, in the margin of exercise answers.
%
% There are two possible options: \texttt{notoc} (see \ref{par:notoc})
% and \texttt{nosetlist} (see \ref{par:nosetlist}).
%
%\medskip
% In the current document, a frame is used to highlight 
% examples beside the rest of the documentation.
%
% \section{Titles}
% \subsection{The \texttt{\bs exercise} command}

% \DescribeMacro{\exercise}
% Each exercise begins with the |\exercise|\oarg{opt} command. 
% This command typesets \textbf{\exercisename}, as a document
% subsection, followed by automatic numbering,
% unique for the whole document.
% The optional parameter \meta{opt} is used to put additional text
% on the same title line, for example to precise a subject or a marking scheme.
% |\exercise[ (to begin)]| yields:
%
% \exercise[ (to begin)]
% \psframe(-0.25,1.3)(12.75,-0.4)
% Try to use this first command now, it's easy.
%
% \bigskip
% To bring additional text closer to the exercise number, 
% we can use the |\unskip| command
% which eliminates preceding space, see the following example, obtained with
% |\exercise[\unskip : calculation]|:
% \exercise[\unskip: calculation]
% \psframe(-0.25,1.3)(12.75,-0.4)
% Calculate $1+1$.
%
% \bigskip
% \DescribeMacro{\exercisename}
% The word \emph{\exercisename} has automatic translation in a few languages\footnote{Translation 
% is currently integrated into the package for the following languages: French,
% German, Spanish, Italian, Portuguese.}
% when the \textsf{babel} package is loaded.
% It can be redefined, with |\renewcommand|, which should be placed 
% after |\begin{document}|, or else we can use macros from the \textsf{babel} package (allowing dynamic language change), e.g.\\
% |\addto\captionssweedish{\def\exercisename{\"Ovning}}| (in the preamble).
%
% \DescribeMacro{\labelexercise}
% This command calls |\exercisename| following by the exercise number.
% It can be redefined. For example, to add a period after the exercise number:
% |\renewcommand{\labelexercise}{\exercisename~\theexercise.}|
%
% \DescribeMacro{\theexercise}
% To change only the numbering type, redefine
% the |\theexercise| command, based on the |exercise| counter.
%
% \DescribeMacro{\labelexercisestyle}
% This macro (which is empty by default) allows to define a particular style
% for exercise titles. In the present document, we defined in the preamble:
% |\renewcommand{\labelexercisestyle}{\rmfamily\color{black}}|\footnote{In the 
% present document, to highlight real sections and subsections titles,
% their color and font have been modified with the
% \texttt{\bs allsectionsfont} macro from the \textsf{sectsty} package.}.
%
% \bigskip
% \DescribeMacro{\exercise*}
% The starred version |\exercise*|\oarg{opt}\marg{label}
% allows to choose another \meta{label} for a particular exercise
% and removes the numbering. For instance:
% |\exercise*[(Fermat theorem)]{Problem}| yields:
%
% \exercise*[(Fermat theorem)]{Problem}
% \psframe(-0.25,1.3)(12.75,-0.7)
% Proove that there are no positive integers $x, y, z$ such that $x^n+y^n=z^n$
% for any integer $n$ greater than 2.
%
% \subsection{The \texttt{\bs subpart} command}
%
% \DescribeMacro{\subpart}
% An exercise may contain several parts that we obtain 
% with the |\subpart|\oarg{opt} command, typeset like a subsubsection.
% \exercise
% \subpart[(preliminary)]
% \psframe(-0.25,1.95)(12.75,-1.9)
% First of all, prepare your cup of tea.
% \subpart
% Now you are ready to make the current exercise.
%
% \bigskip
% \DescribeMacro{\thesubpart}
% By default, the subpart numbering uses letters : A, B, C, etc.
% This numbering type can be redefined with the |\thesubpart| command based on
% the |subpart| counter, for instance |\renewcommand\thesubpart{\arabic{subpart}}|.
%
% \DescribeMacro{\subpartname} \DescribeMacro{\labelsubpart} 
% \DescribeMacro{\labelsubpartstyle}
% As for |\exercise|, the |\subpart| command
% uses |\subpartname| (with automatic translation in a few languages
% if \textsf{babel} is loaded),
% |\labelsubpart| and |\labelsubpartstyle|, which are editable.
% \pagebreak
%
% \DescribeMacro{\subpart*}
% Like |\exercise*|, the starred version |\subpart*|\oarg{opt}\marg{label}
% allows to freely typeset the subpart \marg{label}, for instance
% |\subpart*{First part}|.
%
% \subsection{The \texttt{\bs annex} command}
% \DescribeMacro{\annex}
% The |\annex|\oarg{opt} command typesets the title \textbf{ANNEX}, in uppercase letters, centred
% and in the subsection style,
% with an optional parameter, added on the same line.
%
% \vspace{-\baselineskip}
% \noindent\psframe(-0.25,-0.25)(12.75,-1.25)
% \annex[(to return)]
%
% \DescribeMacro{\annexname}
% The word \emph{\annexname} has automatic translation in a few languages
% if \textsf{babel} package is loaded.
% It can be extended to other languages or modified by redifining |\annexname|.
%
% \DescribeMacro{\annexstyle}
% The annex title style is set by the |\annexstyle| macro,
% defined as follows: |\newcommand\annexstyle{\MakeUppercase}|.
% This command may be redefined as one wants.
%
% \subsection{Exercise titles in table of contents 
% (notoc package option)} \label{par:notoc}
% \DescribeMacro{notoc}
% By default, the titles \emph{\exercisename}, \emph{\subpartname} or \emph{\annexname},
% appear in the table of contents
% (or in the pdf file summary when \textsf{hyperref} package is used). 
% To avoid this, you can set the boolean \texttt{notoc} to \texttt{true}
% or call the \textsf{exesheet} package (or class) with \texttt{notoc} option.
% But notice that title optional arguments will always be ignored in the table of contents.
%
% \subsection{Short exercises: the \texttt{\bs exe} command}
% \DescribeMacro{\exe}
% The |\exe| command starts an exercise by the abbreviation \textbf{\exname}.\ followed by the exercise number,
% without using sectioning commands, and the exercise body begins on the same
% line. An exercise starts a new paragraph without indentation.
%
% \exe This is a short exercise who
% can contain several paragraphs or questions however.
%
% \noindent\psframe(-0.25,1.4)(12.75,-1.2)
% \indent Here for example starts a new paragraph.
% \exe This is another short exercise.
%
% \bigskip
% \DescribeMacro{\exname} \DescribeMacro{\exlabel} \DescribeMacro{\exsepmark}
% The abbreviation \emph{\exname} may be changed by
% redefining |\exname|.
% The |\exlabel| macro calls |\exname| following by a period then the exercise number,
% and |\exsepmark| typesets a long dash.
% We may change these features by redefining these commands.
%
% \bigskip
% \DescribeMacro{\exe*}
% The starred version prints no separator as shown below:
%
% \vspace{-\baselineskip}
% \noindent\psframe(-0.25,-0.35)(12.75,-1.2) 
% \exe* Another short exercise without separator.
%
% \subsection{The \texttt{\bs points} command}
% \DescribeMacro{\points}
% The |\points|\marg{pts} command displays the number of points awarded to an exercise.
% It is intended to be entered in the optional argument of the 
% |\exercise| command\footnote{This command which has to be used
% in the optional argument of \texttt{\bs exercise}, as several others presented below, is incompatible with
% the \textsf{memoir} class which redefines section commands.}.
% |\exercise[\points{5}]| yields:
% \exercise[\points{5}]
% \psframe(-0.25,1.3)(12.75,-0.4)
% Try to read this whole document without drinking tea and you get five points.
%
% \bigskip
% \DescribeMacro{\pointsname} \DescribeMacro{\pointname}
% Like before, the words \emph{points} and in the singular \emph{point}
% (if \meta{pts} is inferior to 2)
% get automatic translation (with \textsf{babel}) in a few languages
% and are modifiables.
% 
% \DescribeMacro{\pointsstyle} \DescribeMacro{pointscolor}
% The style used by the |\points| command may be redefined with |\pointsstyle|. 
% The color is set by |pointscolor| with the |\definecolor| command
% (from the \textsf{xcolor} package by Uwe Kern, loaded by \textsf{exesheet}), 
% for instance: \\ |\definecolor{pointscolor}{named}{blue}|.
%
% 
% \section{Enumerations and lists}
%
% \subsection{List settings (nosetlist package option)} \label{par:nosetlist}
% Enumeration lists are intended to represent questions and sub-questions
% inside exercises. For a good highlight,
% labels are typeset in bold. 
% Moreover, they are left aligned, at the start of the line, 
% without indentation, and the vertical space between items
% is increased compared with \LaTeX\ standard lists.
% These settings are done by the |\setlist| command\footnote{Labels
% may also be changed by the \texttt{\bs labelenumi} and \texttt{\bs labelenumii} commands.}
% from the \textsf{enumitem} package by Javier Bezos.
% Lists with \texttt{itemize} environment are kept in their default configuration\footnote{The
% \texttt{french} otion of the \textsf{babel} package
% alters \texttt{itemize} lists behavior and uses long dash
% as labels for each list level.
% This behavior is problematic when mathematics follows the dash
% symbol because the latter may be confused wih the minus sign.
% Modifications of the \texttt{french} option (which supersedes \texttt{frenchb} 
% of \textsf{babel}) are canceled to restore \LaTeX\ default settings.}.
%
% \vspace{-\baselineskip}
% \noindent\psframe(-0.25,-0.35)(12.75,-3.9) 
% \exercise
% \begin{enumerate}
% \item First question
% \begin{enumerate}
% \item First sub-question
% \item Second sub-question
% \end{enumerate}
% \item Second question
% \end{enumerate}
%
% \DescribeMacro{nosetlist}
% We can avoid enumeration list modifications and restore the \LaTeX\ default settings by passing the option
% \texttt{nosetlist} to the \texttt{exesheet} class or package.
%
% \subsection{List of exercises : the \texttt{exenumerate} environment}
% \DescribeEnv{exenumerate}
% When an exercise sheet is made of short independant exercises,
% it would be ill-advised to display the complete title \emph{\exercisename} for each. 
% In addition to the |\exe| command, previously presented,
% we provide an even lighter solution with the |exenumerate| environment, which is only an enumeration list in which
% spaces between items are further increased compared with those of \texttt{enumerate}.
% Here is an example (the main list is an \texttt{exenumerate} environment but 
% sublists are produced with regular \texttt{enumerate} environments):
%
% \vspace{-\baselineskip}
% \noindent\psframe(-0.25,-0.3)(12.75,-7.05) 
% \begin{exenumerate}
% \item Translate the following sentences in english: 
% \begin{enumerate}
% \item Nam dui ligula, fringilla a, euismod sodales, sollicitudin vel, wisi.
% \item Nam lacus libero, pretium at, lobortis vitae, ultricies et, tellus.
% \end{enumerate}
% \item  Translate the following sentence in german:
% \par Donec aliquet, tortor sed accumsan bibendum, erat ligula aliquet magna,
% vitae ornare odio metus a mi. 
% \item  Translate the following sentences in french: 
% \begin{enumerate}
% \item Cum sociis natoque penatibus 
% et magnis dis parturient montes, nascetur ridiculus mus.
% \item Nulla ullamcorper vestibulum turpis.
% \end{enumerate}
% \end{exenumerate}
% The environment takes an optional parameter, like \texttt{enumerate}, which enables, among others, 
% to typeset alternative list labels, e.g.
% |\begin{exenumerate}[A.]|.
% There are many other options (see the \textsf{enumitem} package documentation).
%
% \subsection{Items aligned by lines: \texttt{tablenum}}
% \DescribeEnv{tablenum} 
% \DescribeEnv{tablenuma}
% \DescribeEnv{tablitem}
% These three environments are used to typeset short questions (\texttt{tablenum}),
% sub-questions (\texttt{tablenuma}) or \texttt{itemize} lists (\texttt{tablitem})
% on the same line. They have the same syntax:
% |\begin{tablenum}|\oarg{opt}|(|\meta{cols}|)|.
% The \meta{cols} parameter is the number of columns used by the environment. It must be
% \emph{in parentheses}. This parameter can be omitted, then its value is 2.
% As for classic lists, each item begins with the |\item| command.
%
% These three environments are defined by the
% |\NewTasks| macro, from the \textsf{tasks} package by Clemens Niederberger.
% They take an optional argument \meta{opt}
% explained in the documentation of this package, 
% e.g.\ |counter-format=tsk[r])| gives a roman numbering
% following by a closing parenthesis.
% There are also many possibilities to place items in an original way,
% for instance, the |\item*| command allows to
% specify the number of columns the item is supposed to span.
% In the following example,
% the five |\item| are placed in order between
% |\begin{tablenum}(3)| and |\end{tablenum}|.
% Notice that numbering is made line by line.
%
% \exercise
% \psframe(-0.25,1.3)(12.75,-2.7)
% Give the derivative of the following functions:
% \begin{tablenum}(3)
% \item $\ds f(x) = \frac{1-x^2}{\mathrm{e}^x +\mathrm{e}^{-x}}$,
% \item $\ds g(x) = \ln \left( \frac{1-x}{1+x^2}\right)$,
% \item $\ds h(x) = \int_{0}^{1}\mathrm{e}^{xy}\, \mathrm{d}y$,
% \item $\ds k(x) = \sum_{i=1}^{\infty}\frac{1}{x^i}$,
% \item $\ds l(x) = \int_{\frac{1}{x}}^{x}\frac{1}{\ln t}\, \mathrm{d}t$.
% \end{tablenum}
%
% For \texttt{tablenuma}, labels are
% letters (a, b, c, \ldots) surrounded
% by parentheses. This cannot be modified globally
% (except by redefining the environment with |\RenewTasks|).
% If the \textsf{exesheet} package is called with option \texttt{nosetlist},
% labels of \texttt{tablenum} and \texttt{tablenuma} environments
% are displayed in normal font with indentation, as for
% \texttt{enumerate}. 
%
% \subsection{Items aligned by columns: \texttt{colsenum}}
% \DescribeEnv{colsenum}    
% To get numbering of items by columns, we have the
% \texttt{colsenum} environment: |\begin{colsenum}|\oarg{opt}\marg{cols}.
% The mandatory parameter is the number of columns
% and the optional one will be passed to \texttt{enumerate},
% allowing, for example, to change the type of numbering (a, A, etc.).
% To use this environment, we have to load the
% \textsf{multicol} package in the preamble.
%
% \exercise
% \psframe(-0.25,1.3)(12.75,-2.65)
% Give the derivative of the following functions:
% \begin{colsenum}{3}
% \item $\ds f(x) = \frac{1-x^2}{\mathrm{e}^x +\mathrm{e}^{-x}}$,
% \item $\ds g(x) = \ln \left( \frac{1-x}{1+x^2}\right)$,
% \item $\ds h(x) = \int_{0}^{1}\mathrm{e}^{xy}\, \mathrm{d}y$,
% \item $\ds k(x) = \sum_{i=1}^{\infty}\frac{1}{x^i}$,
% \item $\ds l(x) = \int_{\frac{1}{x}}^{x}\frac{1}{\ln t}\, \mathrm{d}t$.
% \end{colsenum}
% \DescribeEnv{colsenum*}
% We will notice that, on each line, items are not necessarily well
% aligned, what can produce inelegant effects. 
% On the other hand, the \texttt{colsenum} environment doesn't try to align columns 
% from the bottom by adjusting space between items.
% If we want to get this
% (which is the default option in \textsf{multicol}) we have the
% \texttt{colsenum*} environment (same syntax than \texttt{colsenum}).
% Here what we get in that case, with the same exercise.
%
% \exercise
% \psframe(-0.25,1.3)(12.75,-2.65)
% Give the derivative of the following functions:
% \begin{colsenum*}{3}
% \item $\ds f(x) = \frac{1-x^2}{\mathrm{e}^x +\mathrm{e}^{-x}}$,
% \item $\ds g(x) = \ln \left( \frac{1-x}{1+x^2}\right)$,
% \item $\ds h(x) = \int_{0}^{1}\mathrm{e}^{xy}\, \mathrm{d}y$,
% \item $\ds k(x) = \sum_{i=1}^{\infty}\frac{1}{x^i}$,
% \item $\ds l(x) = \int_{\frac{1}{x}}^{x}\frac{1}{\ln t}\, \mathrm{d}t$.
% \end{colsenum*}
% We can see that these alignments are less good than those
% obtained by numbering of items by line. The numbering of items by columns
% may nevertheless be preferable when there are many items with variable heights,
% and a number of items which can be different from one column to the other.
% Moreover, an advantage of \texttt{colsenum} is that the choice of labels 
% is automatic depending on the list level (and the language),
% unlike \texttt{tablenum} or \texttt{tablenuma}. 
%
% \DescribeEnv{colsitem} 
% \DescribeEnv{colsitem*}
% For \texttt{itemize} lists, the environment \texttt{colsitem}
% produces items aligned by columns rather than by lines as for
% \texttt{tablitem}:
% |\begin{colsitem}|\oarg{opt}\marg{cols}. The optional parameter,
% which is passed to the underlying \texttt{itemize} environment, allows to change the item label (bullet by default).
% And, as for \texttt{colsenum*}, the \texttt{colsitem*} environment
% produces an alignment of columns from the bottom.
%
% \section{Questions and solutions}
%
% \subsection{The \texttt{questions} and \texttt{answers} environments}
% \DescribeEnv{questions} \DescribeEnv{answers}
% The package provides the two environments \texttt{questions} and \texttt{answers}
% to make appear or disappear questions and answers of exercises.
% Display is controlled by two booleans: \texttt{questions} and \texttt{answers}.
% Their default value is \texttt{true}.
%
% \DescribeMacro{\questionsonly} \DescribeMacro{\answersonly}
% The |\questionsonly| command allows to display the questions without the answers
% and |\answersonly| displays the solutions without the questions\footnote{Of course 
% we can also assign the booleans \texttt{questions} and \texttt{answers} 
% directly with the \LaTeX\ command \texttt{\bs setboolean}.}.
% 
% \bigskip
% \DescribeMacro{\correctionstyle} \DescribeMacro{correctioncolor}
% \DescribeMacro{\correctionname}
% In the case (by default) where questions and answers are displayed both,
% answers are then typeset in the style
% |\correctionstyle|, which uses the color \texttt{correctioncolor}.
% This color may be choosen with the |\definecolor| macro
% (by default |\definecolor{correctioncolor}{rgb}{0,0.2,0.6}| = kind of dark blue).
% Moreover, in that case,
% the title \textbf{\correctionname} is displayed at the beginning
% of the \texttt{answers} environment.
% It is defined by the |\correctionname| macro (with translation in a few languages
% and that we can change:\footnote{Except for English, if you want to change package keywords you have to do it \emph{after} \texttt{\bs begin\{document\}}
% because \textsf{babel} will modify these definitions at the end of the preamble.}
% for example we may prefer \emph{Solution}
% than \emph{\correctionname}).
% The style defined by |\correctionstyle| will apply to the title
% but also to the whole environment.
% Here an example.
%
% \vspace{-\baselineskip}
% \noindent\psframe(-0.25,-0.25)(12.75,-6.6) 
% \exercise[\points{3}] \label{points}
% \begin{questions}
% \begin{enumerate}
% \item Is the \textsf{exesheet} package useful ? 
% \item Ins't there any other packages that deal with exercises ?
% \end{enumerate}
% \end{questions}
% \begin{answers}
% \begin{enumerate}
% \item Yes, the \textsf{exesheet} package is very useful.
% \item There are many other packages that deal with exercices, and
% give the ability to produce separatly questions and solutions, for example
% \textsf{exercise} by Paul Pichaureau, \textsf{exercises} by Roger Jud,
% \textsf{exsheets} (superseded by \textsf{xsim}) by Clemens Niederberger,
% \textsf{exframe} by Niklas Beisert,
% \textsf{exam} by Philip Hirschhorn,
% \textsf{answers} by Mike Piff and Joseph Wright,
% \textsf{probsoln} by Nicola Talbot, etc.
% \end{enumerate}
% \end{answers}
%
% \DescribeMacro{\points}
% When only answers are displayed, the text color remains black,
% the word \emph{\correctionname} is not displayed and the
% |\points| macro is patched to suppress the display of points.
% An extended solution for a variable display of points will be disussed
% in section \ref{totalpoints} with the |\totalpoints| macro.
%
% \subsection{More about \texttt{answers} environment}
% Internally, we have used the |\comment| and |\endcomment| macros
% from the \textsf{versions} package by Uwe Lück.
% Other excellent packages allow to manage
% selectively piece of code. Let us mention 
% \textsf{verbatim} by Rainer Schöpf, \textsf{comment} by Victor Eijkhout, 
% \textsf{version} by Donald Arseneau and Stephen Bellantoni,
% \textsf{optional} by Donald Arseneau
% and \textsf{codesection} by Matthias Pospiech.
%
% The \textsf{versions} package used provides furthermore 
% the |\includeversion|\marg{env} and
% |\excludeversion|\marg{env} macros who allow to make appear or disappear
% any environment \meta{env} and these optional environments
% may be nested\footnote{The \textsf{codesection} package also allows
% such nesting, including in the preamble,
% as well as the \textsf{optional} package, but the latter only manages short optional code.}.
%
% However the \texttt{questions} and \texttt{answers} environments
% perform another task, not only making appear or disappear piece of text.
% Indeed, there is a problem with the title \emph{\correctionname}. 
% In which format to typeset it and at which level to put it in the table of contents
% (or in the summary of the pdf file)?
% In fact it depends on which level the environment has been nested.
% We can make a single \texttt{answers} environment for all the
% exercises of the sheet or an \texttt{answers} environment
% for each exercise, for each exercise part, for each question or sub-question.
% In fact, the typeset of the title \emph{\correctionname}
% and his level in the table of contents will be adjusted automatically.
%
% \DescribeEnv{\oarg{level}}
% Nevertheless, we can imagine twisted situations in which 
% the title level will not be correctly calculated.
% It is then possible to force the level of the title \emph{\correctionname} 
% with |\begin{answers}|\oarg{level}.
% The optional \meta{level} parameter is defined as follows:
% 1 for section level titles,
% 2 for subsections (like \emph{\exercisename}), 
% 3 for subsubsections (like \emph{\partname}),
% another number for lower levels
% (then they will not appear in the table of contents).
%
% \bigskip
% \DescribeMacro{answers*}
% The starred version \texttt{answers*} allows to make the title
% \textbf{\correctionname} completely disappear.
%
% \subsection{The \texttt{\bs question} command}
% \DescribeMacro{\question}
% Instead of the \texttt{questions} and \texttt{answers} environments,
% we can also use the simple |\question|\marg{ques}\marg{ans} macro
% in which display of \meta{ques} and \meta{ans} arguments 
% is controlled by the same previous commands |\questionsonly| and |\answersonly|.
% It can be more readable (in the source code) when questions and answers are short.
% In the case of displaying both questions and answers,
% the \emph{\correctionname} title will appear on a new line, in bold,
% as for levels lower than subsubsection in the \texttt{answers} environment
% (and without entries in the table of contents).
% But this command doesn't work with \texttt{verbatim} inside.
%
% \section{Marginal notes for marking scheme}
%
% The \textsf{exesheet} package allows the display of a marking
% scheme with comments and explanations for answers.
%
% \pagebreak
% \subsection{The \texttt{\bs pts} command}
% \DescribeMacro{\pts}
% When exercises are typeset with the |\exe| macro,
% or as a list with the \texttt{exenumerate} environment,
% the marking scheme is displayed in the margin, on the line where
% we put the |\pts|\marg{num} command (in general the first line of the exercise).
% The \meta{num} parameter is the number of points assigned to the exercise.
%
% \vspace{-\baselineskip}
% \noindent\psframe(-3.5,-0.25)(12.75,-2)
% \exe \pts{3} The first exercise with marking sheme.
% \exe \pts{1.5} The second one.
% 
% \bigskip
% \DescribeMacro{\ptsname} \DescribeMacro{\ptname} 
% \DescribeMacro{ptscolor} \DescribeMacro{\ptsstyle}
% The abbreviation \textsf{\ptsname} (or \textsf{\ptname} 
% when the number of points is inferior to 2)
% is automatically added thanks to the macro |\ptsname| or |\ptname| 
% (translated in a few languages if \textsf{babel} is loaded).
% The display color of the points is defined by \texttt{ptscolor} which can be changed
% with |\definecolor|: by default |\definecolor{ptscolor}{named}{red}|.
% The display style is defined by |\ptsstyle|.
%
% \DescribeMacro{\displaypts}
% The display of the marking scheme, as above, is internally controlled by the
% \texttt{marginpts} boolean.
% The |\displaypts| command, which has to be placed in the preamble, defines \texttt{marginpts} to \texttt{true},
% places marginal notes to the left (and not to the right which 
% is the default behavior of \LaTeX)
% and shifts the text body right to increase the left margin compared 
% with the right one, with a ratio 3:2,
% as it is in the present document.
% This ratio is defined by the
% |geometry| macro from the \textsf{geometry} package (by Hideo Umeki) and is valid for the whole document.
% 
% \subsection{The \texttt{\bs totalexe}, \texttt{\bs note} and \texttt{\bs totalpoints} commands}
% \label{totalpoints}
% \DescribeMacro{\totalexe}
% \DescribeMacro{\note}
% To give a more detailed marking sheme, the \textsf{exesheet} package 
% provides some extended commands:
% |\totalexe|\marg{num} to display the total number of points of an exercise
% and especially |\note|\oarg{pts}\marg{comment},
% to indicate some marking detail in answers.
% The optional parameter \meta{pts} is the number of points of the question
% and the mandatory parameter \meta{comment} is used to give details about the marking scheme.
% Below the title has been obtained with |\exercise[\totalexe{4}]|
% and the first comment with \\
% |\note[1]{0,5 for the anti-derivative\\0,5 for simplification of $\ln$}|.
%
% \exercise[\totalexe{4}] \label{totalexe}
% \begin{questions}
% \psframe(-3.5,1.3)(12.75,-3.1)
% For each following question, say if the assertion is true or false.
% Justify the answer carefully.
% \begin{tablenum}
% \item $\ds \int_{0}^{\sqrt{3}}\frac{1}{x+\sqrt{3}} \,\mathrm{d}x = \ln 2$,
% \item $\ds \int_{2}^{\mathrm{e}} \frac{1}{x\ln x} \,\mathrm{d}x = -\ln 2$,
% \item* The function $F$ defined on $\mathbf{R}$ by 
% $F(x) = \ds \int_{0}^{x}\frac{1}{,t^2+t+1}\,\mathrm{d} t$, is increasing on $\mathbf{R}$.
% \end{tablenum}
% \end{questions}
% 
% \begin{answers}
% \vspace{-\baselineskip}
% \noindent\psframe(-4.7,0.9)(12.75,-10.25)
% \begin{enumerate}
%    \item \note[1]{0,5 for the anti-derivative\\0,5 for simplification of $\ln$}
%    We calculate:
%    \[ \int_{0}^{\sqrt{3}}\frac{1}{x+\sqrt{3}}\,\mathrm{d}x
%        = \bigg[ \ln\left(x+\sqrt{3}\right) \bigg]_0^{\sqrt{3}}
%        = \ln\left(2\sqrt{3}\right)-\ln \sqrt{3}
%        = \ln\left(\frac{2 \sqrt{3}}{\sqrt{3}}\right)
%        =\ln 2.
%    \]
%    \textbf{TRUE}.
%
%    \item \note[1.5]{1 for the anti-derivative \\0.5 for the integral value \\[2ex]
%        we could also see that $\frac{1}{x \ln x} >0$ on $[2, \mathrm{e}]$ 
%       while $-\ln2<0$
%    }
%    We have $\ds\frac{1}{x \ln x}= \frac{\frac{1}{x}}{\ln x}= \frac{u'(x)}{u(x)}$
%    with $u(x)=\ln x$, which is positive on $[2, \mathrm{e}]$. Hence
%
%    \[ \int_{2}^{\mathrm{e}}\frac{1}{x \ln x}\,\mathrm{d}x
%        = \Big[ \ln(\ln x) \Big]_2^\mathrm{e}
%        = \ln(\ln \mathrm{e})-\ln(\ln2)= \ln1 -\ln(\ln2)=-\ln(\ln2).
%    \]
%    \textbf{FALSE}.
%
%    \item \note*{1.5}
%    The function $F$ defined on $\mathbf{R}$ by
%    \[ F(x)= \int_{0}^{x}\frac{1}{t^2+t+1}\, \mathrm{d}t \]
%    is derivable on $\mathbf{R}$ and its derivative is such that
%    $F'(x)=\frac{1}{x^2+x+1}$.
%    \note{0.5 for $F'$\\1 for the sign of $F'$ and conclusion}
%    The denominator is a quadratic polynomial, always positive because its discriminant is
%    $\Delta=-3 <0$.
%    Thus $F$ is increasing on $\mathbf{R}$. \\
%    \textbf{TRUE}.
% \end{enumerate}
% \end{answers}
% In the comment of answer 2, a wider vertical space is produced at line break
% with the optional argument |\\[2ex]|\footnote{When a marginal note at the end of a page,
% is followed by another one at the top of the next page,
% the latter is shifted down.
% We can raise this note, by adding at the line break
% a negative vertical space : \texttt{\bs note*\{\bs\bs[-5ex] 2\}}.}.
% The last comment, not placed beside the number of points of answer 3,
% has been produced by placing on the first line after the formula:
% |\note{0.5 for $F'$\\1 for the sign of $F'$ and conclusion}|.
%
% \DescribeMacro{\note*}
% If we don't want to add comment, we have the
% |\note*|\marg{pts} command (better thant |\note|\oarg{pts}|{}|),
% used here in answer 3: |\note*{1.5}|.
%
% \DescribeMacro{markingcolor} \DescribeMacro{\markingstyle} \DescribeMacro{\ptsboxlength}
% The display color of the points, in |\totalexe| and |\note|,
% is defined by \texttt{markingcolor}
% and the style by |\markingstyle|, which are modifiables.
% The oval box produced by |\totalexe| is obtained with the |\ovalbox| command
% of the \textsf{fancybox} package by Timothy Van Zandt,
% with corner arcs set by |\cornersize{1}|.
% The box length is not adjusted to content but depends of the value
% of |\ptsboxlength| in order to keep a uniform appearance
% from one exercise to the other.
%
% \DescribeMacro{notecolor} \DescribeMacro{\notestyle} \DescribeMacro{\noteragged}
% Comment notes are typeset by default in a dark green color
% defined by |\definecolor{notecolor}{rgb}{0.0,0.4,0.0}|.
% The style of the comment is set by the |\notestyle| macro and itself uses the
% |\noteragged| macro. The latter is set by default as |\raggedleft|
% to obtain a \emph{right} alignment (what is customary for notes
% in the left margin).
% 
% \DescribeMacro{\displaypoints}
% Display of points and comments is optional. It is internally controlled by the booleans
% \texttt{marginpoints} and \texttt{marginfullnotes}.
% The |\displaypoints| macro, to place in the preamble, sets  \texttt{marginpoints}
% to \texttt{true}, chooses the left margin for display marginal notes
% and sets the ratio between left and right margins to 3:2\footnote{So 
% that the effect on the margin ratio is correct, the
% \texttt{\bs displaypoints} macro must be placed after other commands that could alter the page geometry, for example the \texttt{\bs pagestyle}
% of the \textsf{schooldocs} package.}.
% Points will then be displayed without the comments.
% 
% \DescribeMacro{\displaynotes} 
% The |\displaynotes|\oarg{align} macro, to be placed also in the preamble,
% defines both booleans to \texttt{true} and allows then the complete display of points and comments.
% The ratio between left/right margins is then set to 5/1\footnote{The
% present document kept a ratio of 3/2 because 
% the \textsf{ltxdoc} class, used here, leaves large enough margins
% and previous examples are not concerned with display of comments.}.
% The optional parameter \meta{align} is used to define alignment:
% |\raggedleft| by default, but we could use |\centering| or
% |\raggedright| (not recommended in left margin).
%
% \DescribeMacro{\displaynotesright}
% The |\displaynotesright|\oarg{align} macro displays a detailed marking scheme
% with comments in the right margin, with the same type of settings 
% as |\displaynotes| but an optional parameter \meta{align} set by default
% to |\raggedleft|.
%
% \bigskip
% \DescribeMacro{\totalpoints}
% The |\totalpoints|\marg{num} macro is intended
% to replace |\points| when using a detailed marking scheme.
% When the scale is not displayed (\texttt{marginpoints} boolean to \texttt{false}),
% it uses |\points| and when the scale is displayed,
% it uses |\totalexe|.
% For example, in the exercise \ref{totalexe}, we should use
% |\totalpoints| rather than |\totalexe|,
% because, when the detailed marking scheme is not displayed, the total points will be typeset
% as in the exercise \ref{points} rather than in the margin.
%
%
%
% \StopEventually{}
%
% \section{Implementation}
%
% \subsection{Class and package basic instructions}
% The \texttt{exesheet} class is based on the \texttt{article} class
% and gives it all its options, except explicit options 
% \texttt{notoc} and \texttt{nosetlist}.
%
%    \begin{macrocode}
%<*class>
\DeclareOption{notoc}{\PassOptionsToPackage{notoc}{exesheet}}
\DeclareOption{nosetlist}{\PassOptionsToPackage{nosetlist}{exesheet}}
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
\ProcessOptions \relax
\LoadClass{article}
\RequirePackage{exesheet}
\RequirePackage{schooldocs}
%</class>
%    \end{macrocode}
%
% Then we define initialization instructions of the \textsf{exesheet} package.
%
% \medskip
%  The \texttt{shortlabel} option in the \textsf{enumitem} package allows to use labels like in 
% the \textsf{enumerate} package e.g. 1., a), A. etc.
%
%    \begin{macrocode}
%<*package>
\RequirePackage{ifthen}
\newboolean{notoc}
\newboolean{nosetlist}
\DeclareOption{notoc}{\setboolean{notoc}{true}}
\DeclareOption{nosetlist}{\setboolean{nosetlist}{true}}
\ProcessOptions \relax
\RequirePackage{xcolor}
\RequirePackage[shortlabels]{enumitem} 
\RequirePackage{tasks}
\RequirePackage{versions}
%\@ifpackageloaded{doc}{}{\RequirePackage{verbatim}}
\RequirePackage{geometry}
\RequirePackage{fancybox}

%    \end{macrocode}
%
% \subsection{Internationalization}
% Here we define the keywords and their translation in French, German, Spanish
% Italian, Portuguese, thanks to the |\addto\captions|\meta{language} macro
% of the \textsf{babel} package.
%
% Translations are placed in a macro |\exetranslate| because, if
% \textsf{exesheet} is called before \textsf{babel} (this is necessarily the case for the 
% \textsf{exesheet} class), then these translations should only happen
% after having loaded the \textsf{babel} package, therefore the |\AtBeginDocument|.
% On the other hand, if the package is loaded \emph{after} \textsf{babel},
% |AtBeginDocument{\exetranslate}| doesn't work, curiously.
% But calling immediately |\exetranslate| works in that case.
%
% Accented characters cannot be used here because they are not recognized 
% if \textsf{inputenc} is loaded after \textsf{exesheet},
% despite the |\AtBeginDocument|. So we have used the basic \LaTeX\ commands to produce them.
%
% \TODO: give the choice to use \textsf{polyglossia} instead of \textsf{babel};
% see the \textsf{translations} or \textsf{multilang} packages.
%
%    \begin{macrocode}
\def\exercisename{Exercise}
\def\subpartname{Part}
\def\annexname{Annex}
\def\exname{Ex}
\def\pointsname{points}    
\def\pointname{point}
\def\correctionname{Correction}
\def\ptsname{pts}
\def\ptname{pt}

\newcommand\exetranslate{%
    \@ifpackageloaded{babel}{%
        \addto\captionsfrench{%
            \def\exercisename{Exercice}
            \def\subpartname{Partie}
            \def\annexname{Annexe}
            \def\exname{Ex}
            \def\pointsname{points}
            \def\pointname{point}
            \def\correctionname{Correction}
            \def\ptsname{pts}
            \def\ptname{pt}
            }
        \addto\captionsgerman{%
            \def\exercisename{\"Ubung}
            \def\subpartname{Teil}
            \def\annexname{Anhang}
            \def\exname{\"Ub}
            \def\pointsname{Punkte}
            \def\pointname{Punkt}
            \def\correctionname{Verbesserung}
            \def\ptsname{Pkte}
            \def\ptname{Pkt}
            }
        \addto\captionsspanish{%
            \def\exercisename{Ejercicio}
            \def\subpartname{Parte}
            \def\annexname{Anexo}
            \def\exname{Ej}
            \def\pointsname{puntos}
            \def\pointname{punto}
            \def\correctionname{Correcci\'on}
            \def\ptsname{ptos}
            \def\ptname{pot}
            }
        \addto\captionsitalian{%
            \def\exercisename{Esercizio}
            \def\subpartname{Parte}
            \def\annexname{Ansesso}
            \def\exname{Es}
            \def\pointsname{punti}
            \def\pointname{punto}
            \def\correctionname{Correzione}
            \def\ptsname{pti}
            \def\ptname{pt}
            }
        \addto\captionsportuges{%
            \def\exercisename{Exerc\'icio}
            \def\subpartname{Parte}
            \def\annexname{Anexo}
            \def\exname{Ex}
            \def\pointsname{pontos}
            \def\pointname{ponto}
            \def\correctionname{Corre\c c\~ao}
            \def\ptsname{pts}
            \def\ptname{pt}
            }
        }{}
    }

\AtBeginDocument{\exetranslate} % if loaded before babel
\exetranslate % necessary when loaded after babel

%    \end{macrocode}
%
% \subsection{Colors}
% The color \texttt{pointscolor} is used by the macro |\points| 
% and \texttt{markingcolor} by the macros |\totalexe|, |\note*| 
% and also for the optional argument of |\note|;
% \texttt{notecolor} is used by the mandatory argument of |\note|.
%
%    \begin{macrocode}
\definecolor{pointscolor}{named}{red}
\definecolor{ptscolor}{named}{red}
\definecolor{markingcolor}{named}{red}
\definecolor{notecolor}{rgb}{0.0, 0.4, 0.0} % kind of dark green
\definecolor{correctioncolor}{rgb}{0,0.2,0.6} % kind of dark blue

%    \end{macrocode}
%
% \medskip
% \subsection{Titles}
% The \texttt{exercise} counter numbers exercises for the whole document 
% regardless of any section.
% To reset the counter at some point, just write |\setcounter{exercise}{0}|
% and if we want an automatic reset at each section,
% add in the preamble \\
% |\makeatletter \@addtoreset{exercise}{section} \makeatother|.
%
% The parts counter depends on \texttt{exercise} and is reset
% at each new exercise.
%
% The |\labelexercisestyle| and |\labelsubpartstyle| commands
% are empty, but allow to customize the style, for instance:\\
% |\renewcommand\labelexercisestyle{\sffamily}|.
%
% By default, the table of contents displays the titles of exercises and parts.
% The \texttt{notoc} boolean is used to modify this behavior.
% If we want to display only exercise titles but not parts,
% we can place in the preamble |\setcounter{tocdepth}{2}|.
%
% \begin{macro}{\exercise}
%    \begin{macrocode}
\newcounter{exercise}

\newcommand{\labelexercise}{\exercisename~\theexercise}
\newcommand{\labelexercisestyle}{}
\newcommand*{\@exercise}[1][]{%     
    \refstepcounter{exercise}
    \subsection*{\labelexercisestyle\labelexercise\ #1}
    \ifthenelse{\boolean{notoc}}{}{
        \addcontentsline{toc}{subsection}{\labelexercise}
        }
    }
\newcommand*{\@@exercise}[2][]{%
    \subsection*{\labelexercisestyle #2 #1}        
    \setcounter{subpart}{0} % resets the parts counter
    \ifthenelse{\boolean{notoc}}{}{
        \addcontentsline{toc}{subsection}{#2}
        }
    }
\newcommand{\exercise}{\@ifstar{\@@exercise}{\@exercise}}    

%    \end{macrocode}
% \end{macro}
% \begin{macro}{\subpart}
%    \begin{macrocode}
\newcounter{subpart}[exercise] %
\renewcommand{\thesubpart}{\Alph{subpart}}

\newcommand{\labelsubpart}{\subpartname~\thesubpart}
\newcommand{\labelsubpartstyle}{}
\newcommand*{\@subpart}[1][]{%
    \refstepcounter{subpart}%    
    \subsubsection*{\labelsubpartstyle\labelsubpart\ #1}
    \ifthenelse{\boolean{notoc}}{}{
        \addcontentsline{toc}{subsubsection}{\labelsubpart}
        }
    }
\newcommand*{\@@subpart}[2][]{%
    \subsubsection*{\labelsubpartstyle #2 #1}
    \ifthenelse{\boolean{notoc}}{}{
        \addcontentsline{toc}{subsubsection}{#2}
        }
    }
\newcommand{\subpart}{\@ifstar{\@@subpart}{\@subpart}}

%    \end{macrocode}
% \end{macro}
% \begin{macro}{\annex}
%    \begin{macrocode}
\newcommand{\annexstyle}{\MakeUppercase}
\newcommand*{\annex}[1][]{%
    \subsection*{\mbox{}\hfill\annexstyle{\annexname} #1\hfill\mbox{}}
    \ifthenelse{\boolean{notoc}}{}{
        \addcontentsline{toc}{subsection}{\annexname}
        }
    }    

%    \end{macrocode}
% \end{macro}
% \begin{macro}{\exe}
%    \begin{macrocode}
\newcommand{\exlabel}{\exname.~\theexercise}
\newcommand{\exsepmark}{---}
\newcommand{\@exe}{\textbf{\exlabel~\exsepmark}~}
\newcommand{\@@exe}{\textbf{\exlabel}~}
\newcommand{\exe}{\bigskip\par\noindent\refstepcounter{exercise}
    \@ifstar{\@@exe}{\@exe}
    }

%    \end{macrocode}
% \end{macro}
% \begin{macro}{\points (ini)}
%    \begin{macrocode}    
\newcommand{\pointsstyle}{%
    \small\mdseries\sffamily\color{pointscolor}\fbox}
\newcommand*{\points}[1]{\hfill 
    \pointsstyle{#1~%
        \ifthenelse{\lengthtest{#1 cm < 2cm}}{\pointname}{\pointsname}%
        }
    }
   
%    \end{macrocode}
% Percent symbols are necessary to avoid spaces between the
% |\fbox| and its inner text.
% Note that, without |\lengthtest|, the test |#1 < 2| doesn't work with decimal numbers.
% % \end{macro}
%
% \subsection{Enumerations and lists}
%
% When using \textsf{babel} with the \texttt{french} option\footnote{The \texttt{french} option
% of \textsf{babel} superseeds the \texttt{frenchb} option.},
% \texttt{itemize} lists are modified with the same dash label for each list level. These modifications are cancelled here to restore default \LaTeX\ \texttt{itemize} lists (labels and spaces).
% As for |\exetranslate|,
% we have create the |\standardfrenchlists| command who must be called into
% |AtBeginDocument| or not, depending on whether
% \textsf{exesheet} is loaded before \textsf{babel} or after.
%
% The |\setlist| command comes from the \textsf{enumitem} package
% (|\setenumerate| is deprecated). By default |itemsep=1ex| for lists of first level,
% and |leftmargin=1.5em| allows to align labels on the start of lines.
%
%    \begin{macrocode}
\newcommand\standardfrenchlists{%
    \@ifpackagewith{babel}{frenchb}{
        \frenchbsetup{StandardLists=true}}{}
    \@ifpackagewith{babel}{french}{
        \@ifundefined{frenchsetup}{
            \frenchbsetup{StandardLists=true}}{
            \frenchsetup{StandardLists=True}}
        }{}
    }
\ifthenelse{\boolean{nosetlist}}{}{
    \AtBeginDocument{% if loaded before babel package
        \standardfrenchlists}
    \standardfrenchlists % necessary when loaded after babel
    \setlist[enumerate]{font=\bfseries}
    \setlist[enumerate,1]{topsep=1.5ex plus 1ex minus 1ex,leftmargin=1.5em}
    }

%    \end{macrocode}
% \begin{macro}{\exenumerate}
%    \begin{macrocode}
\newenvironment{exenumerate}[1][]{%
    \setlist[enumerate]{font=\bfseries}
    \setlist[enumerate,1]{leftmargin=1.5em,
        itemsep=3ex plus 1ex minus 1ex,topsep=3ex plus 1ex minus 1ex}
    \setlist[enumerate,3]{noitemsep,nolistsep}
    \setlist[itemize]{noitemsep,nolistsep}
    \begin{enumerate}[#1]
    }{\end{enumerate}}

%    \end{macrocode}
% \end{macro}
% \DescribeEnv{tablenum} \DescribeEnv{tablenuma}
% The |\NewTasks| command comes from the \textsf{tasks} package.
% It allows to define the environments \texttt{tablenum}, \texttt{tablenuma}
% and \texttt{tablitem}.
% The horizontal spaces are adjusted to get a good alignment with
% items of other \texttt{enumerate} (or \texttt{itemize}) environments.
%
%    \begin{macrocode}
\ifthenelse{\boolean{nosetlist}}{
    \NewTasks[counter-format=tsk[1].,
        column-sep=1em,
        after-item-skip=0.5ex plus 0.5ex minus 0.5ex]{tablenum}[\item](2)
    \NewTasks[counter-format=(tsk[a]),
        column-sep=1em,label-align=right,
        item-indent=2.15em,label-width=1.6em,label-offset=0.5em,
        after-item-skip=0.5ex plus 0.5ex minus 0.5ex]{tablenuma}[\item](2)
    }{% by default
    \NewTasks[counter-format=tsk[1].,label-format=\bfseries,
        column-sep=1em,label-align=right,
        item-indent=1.5em,label-width=1em,label-offset=0.5em,
        after-item-skip=0.5ex plus 0.5ex minus 0.5ex]{tablenum}[\item](2)
    \NewTasks[counter-format=(tsk[a]),label-format=\bfseries,
        column-sep=1em,label-align=right,
        item-indent=2.15em,label-width=1.6em,label-offset=0.5em,
        after-item-skip=0.5ex plus 0.5ex minus 0.5ex]{tablenuma}[\item](2)
    }

%    \end{macrocode}
% \DescribeEnv{tablitem}
%    \begin{macrocode}
\NewTasks[label=\labelitemi,
    label-align=right,
    item-indent=2.3333em,label-offset=0.5em,
    after-item-skip=0.5ex plus 0.5ex minus 0.5ex]{tablitem}[\item](2)

%    \end{macrocode}
% \DescribeEnv{colsenum} \DescribeEnv{colsenum*}
%    \begin{macrocode}
\newenvironment{colsenum}[2][]{%
    \setlength{\multicolsep}{2ex}
    \raggedcolumns % default is \flushcolumns
    \begin{multicols}{#2} % #2 = number of columns
    \begin{enumerate}[#1] % #1 = options of enumerate
    }{
    \end{enumerate}
    \end{multicols}
}

\newenvironment{colsenum*}[2][]{%
    \setlength{\multicolsep}{2ex}
    \begin{multicols}{#2} % #2 = number of columns
    \begin{enumerate}[#1] % #1 = options of enumerate
    }{
    \end{enumerate}
    \end{multicols}
}

%    \end{macrocode}
% \DescribeEnv{colsitem} \DescribeEnv{colsitem*}
%    \begin{macrocode}
\newenvironment{colsitem}[2][]{%
    \setlength{\multicolsep}{2ex}
    \raggedcolumns
    \begin{multicols}{#2}
    \begin{itemize}[#1]
    }{
    \end{itemize}
    \end{multicols}
}

\newenvironment{colsitem*}[2][]{%
    \setlength{\multicolsep}{2ex}
    \begin{multicols}{#2}
    \begin{itemize}[#1]
    }{
    \end{itemize}
    \end{multicols}
}

%    \end{macrocode}
%
% \subsection{Questions and answers}
%
% \DescribeMacro{\questionsonly} \DescribeMacro{\answersonly}
% The \texttt{questions} and \texttt{answers} booleans
% control the display of corresponding environments.
% When created, a boolean has the \texttt{false} value by default,
% but we define them to \texttt{true}.
% The |\questionsonly| and |\answersonly| macros are used as user interface
% to display only one of the two environments.
%    \begin{macrocode}
\newboolean{questions}
\newboolean{answers}
\setboolean{questions}{true}
\setboolean{answers}{true}
\newcommand{\questionsonly}{
    \setboolean{questions}{true}\setboolean{answers}{false}}
\newcommand{\answersonly}{
    \setboolean{questions}{false}\setboolean{answers}{true}}

%    \end{macrocode}
%
% \begin{environment}{questions}
% It is the |\comment| and |\endcomment| macros, provided by the  \textsf{versions} package,
% that allow the magic of conditional displays (we can also find them in the \textsf{verbatim} or \textsf{version} packages).
% The noteworthy \textsf{codesection} package, allows to encapsulate 
% optional code between the macros |\BeginCodeSection|\marg{skip} and |\EndCodeSection|\marg{skip},
% both in the text body and in the preamble,
% but these macros cannot be used inside an environment 
% as we did here for |\comment| and |\endcomment|.
%    \begin{macrocode}
\newcounter{exe@ini}
\newcounter{subpart@ini}

\newenvironment{questions}{
    \ifthenelse{\boolean{questions}}{
        \setcounter{exe@ini}{\value{exercise}}
        \setcounter{subpart@ini}{\value{subpart}}
        }{\comment}}%
    {\ifthenelse{\boolean{questions}}{}{\endcomment}}

%    \end{macrocode}
% \end{environment}
% \begin{environment}{answers}
% The internal macro |\set@toclevel| calculates the title level
% of the word \emph{\correctionname} to display at the start of an
% \texttt{answers} environment (when \texttt{questions} and \texttt{answers} are
% displayed together). The principle is to compare the state of the counters
% \texttt{exercise} and \texttt{subpart} with those saved at the time of
% the call of \texttt{questions}. The |\@enumdepth| counter indicates the 
% \texttt{enumerate} list level in which we are (0 = out of lists).
% The optional parameter of the \texttt{answers} environment allows to force this title level.
%    \begin{macrocode}
\newcounter{@toclevel}
\newcommand{\set@toclevel}[1][]{
    \ifthenelse{\equal{#1}{}}{
        \ifthenelse{\value{exercise} > \value{exe@ini}}{
            \setcounter{@toclevel}{1}
        }{\ifthenelse{\equal{\the\@enumdepth}{0}}{
            % we're not in an enumerate environment
            \ifthenelse{\(\value{subpart} > \value{subpart@ini}\)
                \or \(\value{subpart} = 0\)}{
                \setcounter{@toclevel}{2}
            }{\setcounter{@toclevel}{3}}
          }{\setcounter{@toclevel}{4}}}
    }{\setcounter{@toclevel}{#1}}}

\newcommand{\correctionstyle}{\color{correctioncolor}}

\newenvironment{answers}[1][]{% #1 is the optional level
    \ifthenelse{\boolean{answers}}{%
        \ifthenelse{\boolean{questions}}{%
            \set@toclevel[#1]
            \ifthenelse{\value{@toclevel} = 1}{
                \section*{\correctionstyle\correctionname}
                \ifthenelse{\boolean{notoc}}{}{
                    \addcontentsline{toc}{section}{\correctionname}}
                \setcounter{exercise}{0}
            }{\ifthenelse{\value{@toclevel} = 2}{%
                  \subsection*{\correctionstyle\correctionname}
                  \ifthenelse{\boolean{notoc}}{}{
                      \addcontentsline{toc}{subsection}{\correctionname}}
                  \setcounter{subpart}{0}
              }{\ifthenelse{\value{@toclevel} = 3}{%
                    \subsubsection*{\correctionstyle\correctionname}
                    \ifthenelse{\boolean{notoc}}{}{
                        \addcontentsline{toc}{subsubsection}{
                            \correctionname}}
                    }{\par\textbf{\correctionstyle\correctionname}\par
                    }%
              }%
            }%
        \correctionstyle%
        }{}%
    }{\comment}
}{\ifthenelse{\boolean{answers}}{}{\endcomment}}
    
\newenvironment{answers*}{\ifthenelse{\boolean{answers}}{}{\comment}}%
    {\ifthenelse{\boolean{answers}}{}{\endcomment}}

%    \end{macrocode}
% In the \texttt{answers} environment, if we place |\correctionstyle|
% before |\subsubsection|, the preceding vertical space may be too wide.
%
% \end{environment}
% \begin{macro}{\question}
%    \begin{macrocode}
\newcommand{\question}[2]{%
    \ifthenelse{\boolean{questions}}{#1}{}
    \bgroup
    \ifthenelse{\boolean{answers}}{
        \ifthenelse{\boolean{questions}}{
            \ifx#2\empty\else
                \par\correctionstyle\textbf{\correctionname}\par
            \fi
            }{}
        #2}{}
    \egroup
    }

%    \end{macrocode}
% \end{macro}
% \begin{macro}{\points (patched)}
%    \begin{macrocode}
\let\@oldpoints\points
\renewcommand*{\points}[1]{%
    \ifthenelse{\boolean{questions}}{\@oldpoints{#1}}{}}

%    \end{macrocode}
% \end{macro}
%
% \subsection{Marginal notes}
%
% The commands |\displaypts|, |\displaypoints| and |\displaynotes|
% change the ratio between left and right margins\footnote{So 
% that the effect on the margin ratio is correct, these
% macros must be called, in the preamble, after other commands that also could alter the page geometry.}.
%
% \DescribeMacro{\pts} \DescribeMacro{\displaypts}
%    \begin{macrocode}
\newboolean{marginpts}
\newcommand*{\pointmark}[1]{%
    \ifthenelse{\lengthtest{#1 cm < 2cm}}{#1 \ptname}{#1 \ptsname}}
\newcommand{\ptsstyle}[1]{%
    \footnotesize\centering\sffamily\color{ptscolor} (#1)}
\newcommand*{\pts}[1]{%
    \ifthenelse{\boolean{marginpts}}{%
        \mbox{}% 
        \marginpar{\hspace{0pt}%
            \ptsstyle{\pointmark{#1}}}%
        }{}%
    \ignorespaces
    }
\newcommand{\displaypts}{%
    \reversemarginpar
    \geometry{hmarginratio=3:2}
    \setboolean{marginpts}{true}
    }
    
%    \end{macrocode}
%
% \begin{macro}{\totalexe}
% In the following macros using
% |\marginpar|, percent symbols and |\ignorespaces| are necessary to avoid too much space in the text (or the margin)
% where these macros are inserted.
%    \begin{macrocode}
\newlength{\ptsboxlength} 
\setlength{\ptsboxlength}{3.1em}
\cornersize{1}
\newcommand*{\totalexe}[1]{% 
    \ifthenelse{\boolean{marginpoints}}{%
        \mbox{}%
        \marginpar{\markingstyle{\ovalbox{%
            \makebox[\ptsboxlength]{\pointmark{#1}}}%
            }}%        
        }{}%
    \ignorespaces
    }

%    \end{macrocode}
% \end{macro}
%
% \begin{macro}{\note}
% The booleans \texttt{marginpoints} and \texttt{marginfullnotes} control
% the display of marginal notes. If \texttt{marginpoints} is \texttt{false},
% \texttt{marginfullnotes} will be ignored.
% The |\noteragged| command is initialized outside |\displaynotes|
% such that we can use the |\note| command without |\displaynotes| (see further).
%    \begin{macrocode}
\newboolean{marginpoints}
\newboolean{marginfullnotes}

\newcommand{\markingstyle}[1]{\hspace{0pt}\footnotesize\sffamily%
    \centering\color{markingcolor}\textbf{#1}}
\newcommand{\noteragged}{\raggedleft}
\newcommand{\notestyle}[1]{\hspace{0pt}\footnotesize\sffamily%
    \noteragged\noindent\color{notecolor} #1}
\newcommand{\@note}[2][]{%
    \ifthenelse{\boolean{marginpoints}}{%
        \mbox{}%
        \marginpar{%
            \ifthenelse{\equal{#1}{}}{}{\markingstyle{#1}\\}%
            \ifthenelse{\boolean{marginfullnotes}}{\notestyle #2}{}%
            }%
        }{}%
    \ignorespaces
    }
\newcommand{\@@note}[1]{%
    \ifthenelse{\boolean{marginpoints}}{%
        \mbox{}%
        \marginpar{\markingstyle{#1}}%
        }{}%
    \ignorespaces
    }
\newcommand{\note}{\@ifstar{\@@note}{\@note}}

%    \end{macrocode}
% \end{macro}
%
% \DescribeMacro{\displaypoints} \DescribeMacro{\displaynotes}
%\DescribeMacro{\displaynotesright}
% In |\displaynotes|, the additional length \texttt{1\,in} matches 
% the default free space to the left of |\oddsidemargin|.
%
%    \begin{macrocode}
\newcommand{\displaypoints}{%
    \reversemarginpar
    \geometry{hmarginratio=3:2}
    \setboolean{marginpoints}{true}
    }

\newcommand*{\displaynotes}[1][\raggedleft]{%
    \reversemarginpar
    \renewcommand{\noteragged}{#1}
    \geometry{hmarginratio=5:1}
    \setlength{\marginparwidth}{\oddsidemargin}
    \addtolength{\marginparwidth}{1in}
    \addtolength{\marginparwidth}{-\marginparsep}
    \setlength{\marginparwidth}{0.8\marginparwidth}
    \setboolean{marginpoints}{true}
    \setboolean{marginfullnotes}{true}
    }
    
\newcommand*{\displaynotesright}[1][\raggedright]{%
    \normalmarginpar
    \renewcommand{\noteragged}{#1}
    \geometry{hmarginratio=1:5}
    \setlength{\marginparwidth}{\paperwidth}
    \addtolength{\marginparwidth}{-\textwidth}
    \addtolength{\marginparwidth}{-\oddsidemargin}
    \addtolength{\marginparwidth}{-\marginparsep}
    \addtolength{\marginparwidth}{-1in}
    \setlength{\marginparwidth}{0.8\marginparwidth}
    \setboolean{marginpoints}{true}
    \setboolean{marginfullnotes}{true}
    }
%    \end{macrocode}
% The formatting of marginal notes can possibly be made more regular 
% with the \textsf{ragged2e} package, not loaded by \textsf{exesheet}.
% We will then have to enter, as an optional parameter of |\displaypoints|:
% |\RaggedLeft|, |\Centering|, |\RaggedRight| or |justifying|.
%
% \begin{macro}{\totalpoints}
%    \begin{macrocode}
\newcommand{\totalpoints}{%
    \ifthenelse{\boolean{marginpoints}}{\totalexe}{\points}}
%</package>
%    \end{macrocode}
% \end{macro}
%
% \Finale
\endinput