summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/hypdoc/hypdoc.dtx
blob: 836fa1b36801286fd67cf961cb21f21640e31eb8 (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
% \iffalse meta-comment
%
% File: hypdoc.dtx
% Version: 2023-01-23 v1.18
% Info: Hyper extensions for doc.sty
%
% Copyright (C)
%    2002, 2006, 2007, 2009-2011 Heiko Oberdiek
%    2016-2023 Oberdiek Package Support Group
%    https://github.com/ho-tex/hypdoc/issues
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either
% version 1.3c of this license or (at your option) any later
% version. This version of this license is in
%    https://www.latex-project.org/lppl/lppl-1-3c.txt
% and the latest version of this license is in
%    https://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.
%
% This work has the LPPL maintenance status "maintained".
%
% The Current Maintainers of this work are
% Heiko Oberdiek and the Oberdiek Package Support Group
% https://github.com/ho-tex/hypdoc/issues
%
% This work consists of the main source file hypdoc.dtx
% and the derived files
%    hypdoc.sty, hypdoc.pdf, hypdoc.ins, hypdoc.drv.
%
% Distribution:
%    CTAN:macros/latex/contrib/hypdoc/hypdoc.dtx
%    CTAN:macros/latex/contrib/hypdoc/hypdoc.pdf
%
% Unpacking:
%    (a) If hypdoc.ins is present:
%           tex hypdoc.ins
%    (b) Without hypdoc.ins:
%           tex hypdoc.dtx
%    (c) If you insist on using LaTeX
%           latex \let\install=y\input{hypdoc.dtx}
%        (quote the arguments according to the demands of your shell)
%
% Documentation:
%    (a) If hypdoc.drv is present:
%           latex hypdoc.drv
%    (b) Without hypdoc.drv:
%           latex hypdoc.dtx; ...
%    The class ltxdoc loads the configuration file ltxdoc.cfg
%    if available. Here you can specify further options, e.g.
%    use A4 as paper format:
%       \PassOptionsToClass{a4paper}{article}
%
%    Programm calls to get the documentation (example):
%       pdflatex hypdoc.dtx
%       makeindex -s gind.ist hypdoc.idx
%       pdflatex hypdoc.dtx
%       makeindex -s gind.ist hypdoc.idx
%       pdflatex hypdoc.dtx
%
% Installation:
%    TDS:tex/latex/hypdoc/hypdoc.sty
%    TDS:doc/latex/hypdoc/hypdoc.pdf
%    TDS:source/latex/hypdoc/hypdoc.dtx
%
%<*ignore>
\begingroup
  \catcode123=1 %
  \catcode125=2 %
  \def\x{LaTeX2e}%
\expandafter\endgroup
\ifcase 0\ifx\install y1\fi\expandafter
         \ifx\csname processbatchFile\endcsname\relax\else1\fi
         \ifx\fmtname\x\else 1\fi\relax
\else\csname fi\endcsname
%</ignore>
%<*install>
\input docstrip.tex
\Msg{************************************************************************}
\Msg{* Installation}
\Msg{* Package: hypdoc 2023-01-23 v1.18 Hyper extensions for doc.sty (HO)}
\Msg{************************************************************************}

\keepsilent
\askforoverwritefalse

\let\MetaPrefix\relax
\preamble

This is a generated file.

Project: hypdoc
Version: 2023-01-23 v1.18

Copyright (C)
   2002, 2006, 2007, 2009-2011 Heiko Oberdiek
   2016-2023 Oberdiek Package Support Group

This work may be distributed and/or modified under the
conditions of the LaTeX Project Public License, either
version 1.3c of this license or (at your option) any later
version. This version of this license is in
   https://www.latex-project.org/lppl/lppl-1-3c.txt
and the latest version of this license is in
   https://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.

This work has the LPPL maintenance status "maintained".

The Current Maintainers of this work are
Heiko Oberdiek and the Oberdiek Package Support Group
https://github.com/ho-tex/hypdoc/issues


This work consists of the main source file hypdoc.dtx
and the derived files
   hypdoc.sty, hypdoc.pdf, hypdoc.ins, hypdoc.drv.

\endpreamble
\let\MetaPrefix\DoubleperCent

\generate{%
  \file{hypdoc.ins}{\from{hypdoc.dtx}{install}}%
  \file{hypdoc.drv}{\from{hypdoc.dtx}{driver}}%
  \usedir{tex/latex/hypdoc}%
  \file{hypdoc.sty}{\from{hypdoc.dtx}{package}}%
}

\catcode32=13\relax% active space
\let =\space%
\Msg{************************************************************************}
\Msg{*}
\Msg{* To finish the installation you have to move the following}
\Msg{* file into a directory searched by TeX:}
\Msg{*}
\Msg{*     hypdoc.sty}
\Msg{*}
\Msg{* To produce the documentation run the file `hypdoc.drv'}
\Msg{* through LaTeX.}
\Msg{*}
\Msg{* Happy TeXing!}
\Msg{*}
\Msg{************************************************************************}

\endbatchfile
%</install>
%<*ignore>
\fi
%</ignore>
%<*driver>
\NeedsTeXFormat{LaTeX2e}
\ProvidesFile{hypdoc.drv}%
  [2023-01-23 v1.18 Hyper extensions for doc.sty (HO)]%
\PassOptionsToPackage{numbered}{hypdoc}
\documentclass{ltxdoc}
\usepackage{holtxdoc}[2011/11/22]
\begin{document}
  \DocInput{hypdoc.dtx}%
\end{document}
%</driver>
% \fi
%
%
%
% \GetFileInfo{hypdoc.drv}
%
% \title{The \xpackage{hypdoc} package}
% \date{2023-01-23 v1.18}
% \author{Heiko Oberdiek\thanks
% {Please report any issues at \url{https://github.com/ho-tex/hypdoc/issues}}}
%
% \maketitle
%
% \begin{abstract}
% This package adds hyper features to the package
% \xpackage{doc} that is used in the documentation
% system of \LaTeXe. Bookmarks are added and references
% are linked as far as possible.
% \end{abstract}
%
% \tableofcontents
%
% \section{Features}
%
% The package adds the following features:
% \begin{description}
% \item[Bookmarks:]
%   For supporting bookmarks package \verb|hyperref| is loaded.
%   Some \TeX\ code inside section titles can cause problems
%   during bookmark processing; these can be warnings, ugly
%   bookmark titles or even errors. With the help of
%   \verb|\pdfstringdefDisableCommands| or \verb|\texorpdfstring|
%   you can manage these things, see \verb|hyperref|'s package
%   documentation.
% \item[Additional bookmarks:]
%   Unnumbered bookmark entries are generated for:
%   \begin{itemize}
%   \item Table of contents
%   \item List of figures
%   \item List of tables
%   \item Index
%   \item Glossary
%   \end{itemize}
%   Option \texttt{numbered} controls, whether these section or
%   chapters should be numbered. The exception is the table
%   of contents if this it would be the first numbered
%   section. Then just a bookmark is added.
% \item[Metadata:]
%   The loaded package \verb|hyperref|, enforced by
%   option \verb|pdfusetitle|, tries to detect \verb|\title|
%   and \verb|\author| and sets the corresponding PDF
%   information fields. In case of problems see the previous
%   item about bookmarks.
%   These entries can be overwritten or new ones added by
%   \verb|\hypersetup| after the packages is loaded, see
%   documentation of package \verb|hyperref|.
% \item[References, links:] Because of package \verb|\hyperref|
%   |\ref| become links, also \verb|\url|, footnote referencing
%   are supported.
% \item[Index:]
%   The main part of this package deals with index links in order
%   to support the kind of index that package \verb|doc| provides.
% \item[Thumbnails:]
%   Package \verb|thumbpdf| may additionally be loaded for the case that the
%   PDF file also should contain thumbnails, see the documentation
%   of this package. But thumbnail embedding is not really
%   necessary, because nowadays AcrobatReader is able to
%   generate and view thumbnails on the fly.
% \end{description}
%
% \section{Usage}
%
% The purpose of this packages is to add PDF features to
% the documentation of LaTeX packages. Thus just load
% the package in the driver file that generates the
% documentation:
% \begin{quote}
%   \verb|\usepackage{hypdoc}|
% \end{quote}
% Package \verb|doc| is loaded by \verb|hypdoc|, thus you
% also can replace a \verb|\usepackage{doc}| with this line.
% At any case, the package must be loaded before macros of
% package \verb|doc| such as \verb|\CodelineIndex| or
% \verb|\PageIndex| are used.
%
% If the class \verb|ltxdoc| is used, you can also use
% the configuration file for this class to add
% package \verb|hypdoc|. Add the following line
% to the file \verb|ltxdoc.cfg| (or create a new one):
% \begin{quote}
%\begin{verbatim}
%\AtEndOfClass{\RequirePackage{hypdoc}}
%\end{verbatim}
% \end{quote}
%
% \subsection{Options}
%
% There is one option \texttt{numbered}. It controls,
% whether the starred versions of section or chapter
% inside \cs{tableofcontents}, \cs{listoffigures}, \dots
% should be replaced by the non-star versions.
%
% \subsection{Simple example}
% Example of a simple driver file \verb|foobar.drv|
% of a package \verb|foobar|. Often the driver file
% is packed in the file \verb|foobar.dtx| and can
% be extracted by docstrip or if an instruction file
% for docstrip is provided by:
% \begin{quote}
% \verb|tex foobar.ins|
% \end{quote}
% Note that although docstrip doesn't rely on \LaTeX,
% sometimes you need to run the \verb|.ins| file through
% \LaTeX. Oddly enough, often the only \LaTeX\ feature
% in use is \verb|\NeedsTeXFormat{LaTeX2e}| in the first line.
% \begin{quote}
%\begin{verbatim}
%\documentclass{ltxdoc}
%\usepackage{hypdoc}
%\RecordChanges
%\EnableCrossrefs
%\CodelineIndex
%\begin{document}
%\title{Title for package \texttt{foobar}}
%\author{Author of package \texttt{foobar}}
%\date{...}
%\maketitle
%\tableofcontents
%\DocInput{foobar.dtx}
%\PrintChanges
%\PrintIndex
%\end{document}
%\end{verbatim}
% \end{quote}
%
% Then compile it, for example with pdf\LaTeX.
% \begin{quote}
%\begin{verbatim}
%pdflatex foobar.drv
%makeindex -s gind.ist foobar.idx
%makeindex -s gglo.ist -o foobar.gls foobar.glo
%pdflatex foobar.drv
%\end{verbatim}
% \end{quote}
% You will need several cycles until the cross references
% and similar things are correct.
%
% \subsection{Example \texttt{source2e.tex}}
%
% The source code of the base of \LaTeX\ is available as
% a bunch of \verb|.dtx| files. \LaTeX\ provides the file
% \verb|source2e.tex| to merge them all together.
%
% Now you can either load package \verb|hypdoc| in a private copy
% of this file (please, respect the LPPL) or use the configuration
% file \verb|ltxdoc.cfg|. Example that also sets A4 paper size:
% \begin{quote}
%\begin{verbatim}
%\PassOptionsToClass{a4paper}{article}
%\AtEndOfClass{\RequirePackage{hypdoc}}
%\end{verbatim}
% \end{quote}
%
% Then \verb|source2e.tex| can be compiled by pdf\TeX, for example:
% \begin{quote}
%\begin{verbatim}
%pdflatex source2e
%makeindex -s gind.ist source2e.idx
%makeindex -s gglo.ist -o source2e.glo source2e.gls
%pdflatex source2e
%makeindex -s gind.ist source2e.idx
%makeindex -s gglo.ist -o source2e.glo source2e.gls
%pdflatex source2e
%\end{verbatim}
% \end{quote}
%
% \StopEventually{
% }
%
% \section{Implementation}
%
%    \begin{macrocode}
%<*package>
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{hypdoc}%
  [2023-01-23 v1.18 Hyper extensions for doc.sty (HO)]%
%    \end{macrocode}
%    The package identification is done at the top of the |.dtx| file
%    in order to use only one identification string.
%
%    For unique command names this package uses |HD@| as prefix
%
% \subsection{Options}
%
%    \begin{macro}{\ifHD@numbered}
%    \begin{macrocode}
\newif\ifHD@numbered
%    \end{macrocode}
%    \end{macro}
%    \begin{macrocode}
\DeclareOption{numbered}{\HD@numberedtrue}
\ProcessOptions*\relax
%    \end{macrocode}
%
% \subsection{Package loading}
%
%    \begin{macrocode}
\RequirePackage{atveryend}[2010/03/24]
\RequirePackage{doc}
%    \end{macrocode}
%    \begin{macrocode}
\ifx\numexpr\@undefined
  \RequirePackage{calc}%
\fi
%    \end{macrocode}
%    \begin{macrocode}
\@ifpackageloaded{hyperref}
 {\PackageWarning{hypdoc}{hyperref has been loaded before. Check the options!}}
 {\RequirePackage[%
    hyperindex=false,%
    pdfusetitle,%
    pdfpagelabels%
    ]{hyperref}[2002/05/09]%
 }
\hypersetup{%
  colorlinks,%
  plainpages=false,%
  bookmarksopen,%
  bookmarksnumbered,%
  bookmarksopenlevel=0,%
  pdfstartview={FitBH \hypercalcbp{%
    \paperheight-\topmargin-1in-\headheight-\headsep
  }},%
}
%    \end{macrocode}
%
%    \begin{macrocode}
\newcounter{HD@unique}
%    \end{macrocode}
%    \begin{macro}{\theHD@unique}
%    \begin{macrocode}
\renewcommand{\theHD@unique}{%
  \number\value{HD@unique}%
}
%    \end{macrocode}
%    \end{macro}
%
%    \begin{macrocode}
\g@addto@macro\Hy@UseMaketitleInfos{%
  \@ifundefined{fileinfo}{}{%
    \ifx\@pdfsubject\@empty
      \hypersetup{pdfsubject={\fileinfo}}%
    \fi
  }%
}
%    \end{macrocode}
%
%    \begin{macrocode}
\pdfstringdefDisableCommands{%
  \let\thanks\@gobble
  \let\footnote\@gobble
  \def\cs#1{\textbackslash #1}%
  \let\normalfont\@empty
  \let\scshape\@empty
  \def\and{and }%
}
%    \end{macrocode}
%
%
% \subsection{Bookmarks}
%
%    \begin{macro}{\HD@sectionpatch}
%    \begin{macrocode}
\def\HD@sectionpatch{%
  \ifHD@numbered
    \HD@@sectionpatch{section}%
    \HD@@sectionpatch{chapter}%
  \else
    \let\Hy@writebookmark\HD@disable@writebookmark
  \fi
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@@sectionpatch}
%    \begin{macrocode}
\def\HD@@sectionpatch#1{%
  \expandafter\let\csname HDorg@@#1\expandafter\endcsname
    \csname #1\endcsname
  \@namedef{#1}{%
    \@ifstar{\@nameuse{HDorg@@#1}}{\@nameuse{HDorg@@#1}}%
  }%
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@disable@writebookmark}
%    \begin{macrocode}
\def\HD@disable@writebookmark#1#2#3#4#5{}
%    \end{macrocode}
%    \end{macro}
%
%    \begin{macro}{\HD@guesstoclevel}
%    A wild guessing of the toclevel. There is the hope, that
%    the macro |#1| starts with a sectioning command.
%    \begin{macrocode}
\def\HD@guesstoclevel#1{%
  \expandafter\HD@@guesstoclevel#1\section\HD@end
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@@guesstoclevel}
%    \begin{macrocode}
\long\def\HD@@guesstoclevel#1#2\HD@end{%
  \@ifundefined{toclevel@\expandafter\@gobble\string#1\@empty}{%
    1%
  }{%
    \@nameuse{toclevel@\expandafter\@gobble\string#1\@empty}%
  }%
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{tableofcontents}}
%
%    \begin{macro}{\HDorg@tableofcontents}
%    \begin{macrocode}
\let\HDorg@tableofcontents\tableofcontents
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\tableofcontents}
%    As first section the table of contents shouldn't
%    go into the toc itself. Also a number looks too funny then.
%    Just a bookmark is enough in this case.
%    \begin{macrocode}
\def\tableofcontents{%
  \begingroup
    \@ifundefined{c@section}{%
      \def\c@section{0}%
    }{}%
  \expandafter\endgroup
  \ifcase\c@section
    \stepcounter{HD@unique}%
    \pdfbookmark[\HD@guesstoclevel{\HDorg@tableofcontents}]%
        {\contentsname}{toc\theHD@unique}%
    \HDorg@tableofcontents
  \else
    \ifHD@numbered
    \else
      \stepcounter{HD@unique}%
      \pdfbookmark[\HD@guesstoclevel{\HDorg@tableofcontents}]%
          {\contentsname}{toc\theHD@unique}%
    \fi
    \begingroup
      \HD@sectionpatch
      \HDorg@tableofcontents
    \endgroup
  \fi
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{listoffigures}}
%
%    \begin{macro}{\HDorg@listoffigures}
%    \begin{macrocode}
\let\HDorg@listoffigures\listoffigures
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\listoffigures}
%    \begin{macrocode}
\def\listoffigures{%
  \ifHD@numbered
  \else
    \stepcounter{HD@unique}%
    \pdfbookmark[\HD@guesstoclevel{\HDorg@listoffigures}]%
        {\listfigurename}{toc\theHD@unique}%
  \fi
  \begingroup
    \HD@sectionpatch
    \HDorg@listoffigures
  \endgroup
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{listoftables}}
%
%    \begin{macro}{\HDorg@listoftables}
%    \begin{macrocode}
\let\HDorg@listoftables\listoftables
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\listoftables}
%    \begin{macrocode}
\def\listoftables{%
  \ifHD@numbered
  \else
    \stepcounter{HD@unique}%
    \pdfbookmark[\HD@guesstoclevel{\HDorg@listoftables}]%
        {\listtablename}{toc\theHD@unique}%
  \fi
  \begingroup
    \HD@sectionpatch
    \HDorg@listoftables
  \endgroup
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{thebibliography}}
%
%    \begin{macro}{\HDorg@thebibliography}
%    \begin{macrocode}
\let\HDorg@thebibliography\thebibliography
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\thebibliography}
%    \begin{macrocode}
\def\thebibliography{%
  \ifHD@numbered
  \else
    \stepcounter{HD@unique}%
    \pdfbookmark[\HD@guesstoclevel{\HDorg@thebibliography}]%
      {\@ifundefined{chapter}{\refname}{\bibname}}{bib\theHD@unique}%
  \fi
  \HD@sectionpatch
  \HDorg@thebibliography
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{theindex}}
%
%    \begin{macro}{\HDorg@theindex}
%    \begin{macrocode}
\let\HDorg@theindex\theindex
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\theindex}
%    \begin{macrocode}
\def\theindex{%
  \let\HDorg@index@prologue\index@prologue
  \let\HDorg@writebookmark\Hy@writebookmark
  \HD@sectionpatch
  \g@addto@macro\IndexParms{%
    \ifHD@numbered
    \else
      \let\Hy@writebookmark\HDorg@writebookmark
    \fi
    \let\bfseries\HD@bfseries
  }%
  \edef\HD@toclevel@index{\HD@guesstoclevel{\index@prologue}}%
  \begingroup
    \count@=\HD@toclevel@index\relax
    \advance\count@ by 1 %
    \xdef\HD@toclevel@subindex{\the\count@}%
  \endgroup
  \def\index@prologue{%
    \ifHD@numbered
    \else
      \begingroup
        \stepcounter{HD@unique}%
        \let\Hy@writebookmark\HDorg@writebookmark
        \pdfbookmark[\HD@toclevel@index]%
            {\indexname}{index\theHD@unique}%
      \endgroup
    \fi
    \HDorg@index@prologue
  }%
  \HDorg@theindex
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HDorg@bfseries}
%    \begin{macrocode}
\let\HDorg@bfseries\bfseries
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@bfseries}
%    \begin{macrocode}
\def\HD@bfseries{\futurelet\HD@hfil\HD@@bfseries}%
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@@bfseries}
%    \begin{macrocode}
\def\HD@@bfseries{%
  \HDorg@bfseries
  \ifx\HD@hfil\hfil
    \expandafter\HD@@@bfseries
  \fi
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@@@bfseries}
%    \begin{macrocode}
\def\HD@@@bfseries\hfil#1\hfil{%
  \ifx\\#1\\%
  \else
    \raisebox{\baselineskip}[0pt]{%
      \kern-\HD@margin\relax
      \pdfbookmark[\HD@toclevel@subindex]{#1}{HD.#1}%
      \kern\HD@margin\relax
    }%
  \fi
  \hfil#1\hfil
}%
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@margin}
%    \begin{macrocode}
\def\HD@margin{1mm}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{theglossary}}
%
%    \begin{macro}{\HDorg@theglossary}
%    \begin{macrocode}
\let\HDorg@theglossary\theglossary
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\theglossary}
%    \begin{macrocode}
\def\theglossary{%
  \let\HDorg@glossary@prologue\glossary@prologue
  \let\HDorg@writebookmark\Hy@writebookmark
  \HD@sectionpatch
  \def\glossary@prologue{%
    \ifHD@numbered
    \else
      \begingroup
        \let\Hy@writebookmark\HDorg@writebookmark
        \stepcounter{HD@unique}%
        \pdfbookmark[\HD@guesstoclevel{\HDorg@glossary@prologue}]%
            {\changehistoryname}{glossary\theHD@unique}%
      \endgroup
    \fi
    \HDorg@glossary@prologue
  }%
  \HDorg@theglossary
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\glossaryname}
%    \begin{macrocode}
\providecommand*{\glossaryname}{Change History}
%    \end{macrocode}
%    \end{macro}
%
%    \begin{macro}{\glossaryname}
%    \begin{macrocode}
\providecommand*{\changehistoryname}{\glossaryname}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{Index}
%
%    \begin{macrocode}
\newcounter{HD@hypercount}
%    \end{macrocode}
%    \begin{macro}{\HD@helplength}
%    \begin{macrocode}
\newlength{\HD@helplength}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\ifHD@savedest}
%    \begin{macrocode}
\newif\ifHD@savedest
\HD@savedesttrue
%    \end{macrocode}
%    \end{macro}
%    \begin{macrocode}
\AtBeginDocument{%
  \HD@savedest@init
}
%    \end{macrocode}
%    \begin{macrocode}
\RequirePackage{rerunfilecheck}[2009/12/10]
%    \end{macrocode}
%    \begin{macro}{\HD@savedest@init}
%    \begin{macrocode}
\begingroup
  \catcode`\^^M=\active
\@firstofone{\endgroup
  \def\HD@savedest@init{%
    \ifHD@savedest
      \let\HDorg@tilde~%
      \let~\HD@savedest@entry
      \edef\HDorg@catcodeM{\the\catcode`\^^M}%
      \let\HDorg@M^^M%
      \catcode`\^^M=\active
      \def^^M{}%
      \InputIfFileExists{\jobname.hd}{}{}%
      \let~\HDorg@tilde
      \let^^M\HDorg@M
      \catcode`\^^M=\HDorg@catcodeM\relax
      \newwrite\HD@savedest@out
      \RerunFileCheck{\jobname.hd}{%
        \immediate\closeout\HD@savedest@out
      }{}%
      \immediate\openout\HD@savedest@out=\jobname.hd\relax
    \else
      \let\HD@savedest@add\@gobble
    \fi
  }%
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@savedest@entry}
%    \begin{macrocode}
  \def\HD@savedest@entry#1^^M{%
    \@namedef{HD.#1}{}%
  }%
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@savedest@add}
%    \begin{macrocode}
\def\HD@savedest@add#1{%
  \immediate\write\HD@savedest@out{\string~#1}%
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\ifHD@targetraise}
%    \begin{macrocode}
\newif\ifHD@targetraise
\HD@targetraisetrue
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@target}
%    \begin{macrocode}
\def\HD@target{%
  \ifHD@targetraise
    \ifhmode
      \settoheight{\HD@helplength}{[H]}%
      \addtolength{\HD@helplength}{0.4ex}%
      \raisebox{\HD@helplength}[0pt][0pt]{%
        \HD@maketarget
      }%
    \else
      \HD@maketarget
    \fi
  \else
    \HD@maketarget
  \fi
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@maketarget}
%    \begin{macrocode}
\def\HD@maketarget{%
  \stepcounter{HD@hypercount}%
  \def\HD@next{%
    \llap{\hypertarget{HD.\the\c@HD@hypercount}{}\,}%
  }%
  \ifHD@savedest
    \expandafter\ifx\csname HD.\the\c@HD@hypercount\endcsname\@empty
    \else
      \let\HD@next\relax
    \fi
  \fi
  \HD@next
}
%    \end{macrocode}
%    \end{macro}
%
%    \begin{macro}{\CodelineIndex}
%    \begin{macrocode}
\g@addto@macro\CodelineIndex{%
  \let\special@index\HD@codeline@wrindex
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\PageIndex}
%    \begin{macrocode}
\g@addto@macro\PageIndex{%
  \let\special@index\HD@page@wrindex
}
%    \end{macrocode}
%    \end{macro}
%
%    \begin{macro}{\HD@codeline@wrindex}
%    \begin{macrocode}
\def\HD@codeline@wrindex#1{%
  \begingroup
    \let\HDorg@encapchar\encapchar
    \def\encapchar##1\encapchar##2\@nil{%
      \HDorg@encapchar
      hdclindex{\the\c@HD@hypercount}{##1}%
    }%
    \codeline@wrindex{%
      #1\encapchar\encapchar\@nil
    }%
  \endgroup
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\HD@page@wrindex}
%    \begin{macrocode}
\def\HD@page@wrindex#1{%
  \begingroup
    \let\HDorg@encapchar\encapchar
    \def\encapchar##1\encapchar##2\@nil{%
      \HDorg@encapchar
      hdpindex{##1}%
    }%
    \HDorg@index{#1\encapchar\encapchar\@nil}%
  \endgroup
}
%    \end{macrocode}
%    \end{macro}
%
%    \begin{macro}{\hdclindex}
%    \begin{macrocode}
\def\hdclindex#1#2#3{%
  \csname\ifx\\#2\\relax\else#2\fi\endcsname{%
    \hyperlink{HD.#1}{#3}%
    \HD@savedest@add{#1}%
  }%
}
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\hdpindex}
%    \begin{macrocode}
\def\hdpindex#1#2{%
  \csname\ifx\\#1\\relax\else#1\fi\endcsname{%
    \hyperpage{#2}%
  }%
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{PrintDescribeMacro}}
%
%    \begin{macro}{\HDorg@PrintDescribeMacro}
%    \begin{macrocode}
\let\HDorg@PrintDescribeMacro\PrintDescribeMacro
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\PrintDescribeMacro}
%    \begin{macrocode}
\renewcommand\PrintDescribeMacro[1]{%
  \begingroup
    \let\HDorg@MacroFont\MacroFont
    \def\MacroFont{%
      \HD@target
      \HDorg@MacroFont
    }%
    \HDorg@PrintDescribeMacro{#1}%
  \endgroup
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{PrintMacroName}}
%
%    \begin{macro}{\HDorg@PrintMacroName}
%    \begin{macrocode}
\let\HDorg@PrintMacroName\PrintMacroName
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\PrintMacroName}
%    \begin{macrocode}
\renewcommand\PrintMacroName[1]{%
  \begingroup
    \let\HDorg@MacroFont\MacroFont
    \def\MacroFont{%
      \HD@target
      \HDorg@MacroFont
    }%
    \HDorg@PrintMacroName{#1}%
  \endgroup
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{theCodelineNo}}
%
%    \begin{macro}{\HDorg@theCodelineNo}
%    \begin{macrocode}
\let\HDorg@theCodelineNo\theCodelineNo
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\theCodelineNo}
%    \begin{macrocode}
\renewcommand*\theCodelineNo{%
  \settowidth{\HD@helplength}{\HDorg@theCodelineNo\ }%
  \ifdim\HD@helplength<\MacroIndent
    \addtolength{\HD@helplength}{-\MacroIndent}%
    \llap{%
      \begingroup\HD@target\endgroup
      \hspace*{-\HD@helplength}%
    }%
  \else
    \HD@target
  \fi
  \HDorg@theCodelineNo
}
%    \end{macrocode}
%    \end{macro}
%
%    \begin{macro}{\HDorg@index}
%    \begin{macrocode}
\AtBeginDocument{%
  \let\HDorg@index\index
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{SpecialUsageIndex}}
%
%    \begin{macro}{\HDorg@SpecialUsageIndex}
%    \begin{macrocode}
\let\HDorg@SpecialUsageIndex\SpecialUsageIndex
\renewcommand*\SpecialUsageIndex[1]{%
  \@bsphack
  \begingroup
    \HD@target
    \let\index\HDorg@index
    \let\HDorg@encapchar\encapchar
    \edef\encapchar usage{%
       \HDorg@encapchar hdclindex{\the\c@HD@hypercount}{usage}%
    }%
    \HDorg@SpecialUsageIndex{#1}%
  \endgroup
  \@esphack
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{autoindex}}
%
%    \begin{macrocode}
\begingroup\expandafter\expandafter\expandafter\endgroup
\expandafter\ifx\csname autoindex\endcsname\relax
\else
%    \end{macrocode}
%    \begin{macro}{\HDorg@autoindex}
%    \begin{macrocode}
  \let\HDorg@autoindex\autoindex
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\autoindex}
%    \begin{macrocode}
  \renewcommand*\autoindex[1]{%
    \@bsphack
    \begingroup
      \HD@target
      \let\index\HDorg@index
      \let\HDorg@encapchar\encapchar
      \edef\encapchar usage{%
         \HDorg@encapchar hdclindex{\the\c@HD@hypercount}{usage}%
      }%
      \HDorg@autoindex{#1}%
    \endgroup
    \@esphack
  }%
\pdfstringdefDisableCommands{\let\autoindex\@gobble }
\fi
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{SpecialEnvIndex}}
%
%    \begin{macro}{\HDorg@SpecialEnvIndex}
%    \begin{macrocode}
\let\HDorg@SpecialEnvIndex\SpecialEnvIndex
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\SpecialEnvIndex}
%    \begin{macrocode}
\renewcommand*\SpecialEnvIndex[1]{%
  \@bsphack
  \begingroup
    \HD@target
    \let\HDorg@encapchar\encapchar
    \edef\encapchar usage{%
      \HDorg@encapchar hdclindex{\the\c@HD@hypercount}{usage}%
    }%
    \HDorg@SpecialEnvIndex{#1}%
  \endgroup
  \@esphack
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{SortIndex}}
%
%    \begin{macro}{\HDorg@SortIndex}
%    \begin{macrocode}
\let\HDorg@SortIndex\SortIndex
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\SortIndex}
%    \begin{macrocode}
\renewcommand*{\SortIndex}[2]{%
  \@bsphack
  \begingroup
    \let\index\HD@page@wrindex
    \HDorg@SortIndex{#1}{#2}%
  \endgroup
  \@esphack
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{@wrglossary}}
%
%    \begin{macro}{\HDorg@wrglossary}
%    \begin{macrocode}
\let\HDorg@wrglossary\@wrglossary
%    \end{macrocode}
%    \end{macro}
%    \begin{macro}{\@wrglossary}
%    \begin{macrocode}
\def\@wrglossary#1{%
  \let\HDorg@encapchar\encapchar
  \def\encapchar##1\encapchar##2\@nil{%
    \HDorg@encapchar
    hdpindex{##1}%
  }%
  \HDorg@wrglossary{#1\encapchar\encapchar\@nil}%
}
%    \end{macrocode}
%    \end{macro}
%
% \subsection{\cs{MacroIndent}}
%
%    \cs{MacroIndent} automatically calculated.
%    \begin{macrocode}
\AfterLastShipout{%
  \if@filesw
    \immediate\write\@auxout{%
      \string\providecommand\string\HD@SetMacroIndent[1]{}%
    }%
    \immediate\write\@auxout{%
      \string\HD@SetMacroIndent{\number\value{CodelineNo}}%
    }%
  \fi
}
%    \end{macrocode}
%    \begin{macro}{\HD@SetMacroIndent}
%    \begin{macrocode}
\def\HD@SetMacroIndent#1{%
  \begingroup
    \value{CodelineNo}=#1\relax
    \settowidth{\MacroIndent}{\HDorg@theCodelineNo\ }%
    \global\MacroIndent\MacroIndent
  \endgroup
}
%    \end{macrocode}
%    \end{macro}
%
%    \begin{macrocode}
%</package>
%    \end{macrocode}
%
% \section{Installation}
%
% \subsection{Download}
%
% \paragraph{Package.} This package is available on
% CTAN\footnote{\CTANpkg{hypdoc}}:
% \begin{description}
% \item[\CTAN{macros/latex/contrib/hypdoc/hypdoc.dtx}] The source file.
% \item[\CTAN{macros/latex/contrib/hypdoc/hypdoc.pdf}] Documentation.
% \end{description}
%
%
% \subsection{Package installation}
%
% The best is to install the package with the package manager of your \TeX{}
% distribution. If a manual installation is needed:
%
% \paragraph{Unpacking.} The \xfile{.dtx} file is a self-extracting
% \docstrip\ archive. The files are extracted by running the
% \xfile{.dtx} through \plainTeX:
% \begin{quote}
%   \verb|tex hypdoc.dtx|
% \end{quote}
%
% \paragraph{TDS.} Now the different files must be moved into
% the different directories in your installation TDS tree
% (also known as \xfile{texmf} tree):
% \begin{quote}
% \def\t{^^A
% \begin{tabular}{@{}>{\ttfamily}l@{ $\rightarrow$ }>{\ttfamily}l@{}}
%   hypdoc.sty & tex/latex/hypdoc/hypdoc.sty\\
%   hypdoc.pdf & doc/latex/hypdoc/hypdoc.pdf\\
%   hypdoc.dtx & source/latex/hypdoc/hypdoc.dtx\\
% \end{tabular}^^A
% }^^A
% \sbox0{\t}^^A
% \ifdim\wd0>\linewidth
%   \begingroup
%     \advance\linewidth by\leftmargin
%     \advance\linewidth by\rightmargin
%   \edef\x{\endgroup
%     \def\noexpand\lw{\the\linewidth}^^A
%   }\x
%   \def\lwbox{^^A
%     \leavevmode
%     \hbox to \linewidth{^^A
%       \kern-\leftmargin\relax
%       \hss
%       \usebox0
%       \hss
%       \kern-\rightmargin\relax
%     }^^A
%   }^^A
%   \ifdim\wd0>\lw
%     \sbox0{\small\t}^^A
%     \ifdim\wd0>\linewidth
%       \ifdim\wd0>\lw
%         \sbox0{\footnotesize\t}^^A
%         \ifdim\wd0>\linewidth
%           \ifdim\wd0>\lw
%             \sbox0{\scriptsize\t}^^A
%             \ifdim\wd0>\linewidth
%               \ifdim\wd0>\lw
%                 \sbox0{\tiny\t}^^A
%                 \ifdim\wd0>\linewidth
%                   \lwbox
%                 \else
%                   \usebox0
%                 \fi
%               \else
%                 \lwbox
%               \fi
%             \else
%               \usebox0
%             \fi
%           \else
%             \lwbox
%           \fi
%         \else
%           \usebox0
%         \fi
%       \else
%         \lwbox
%       \fi
%     \else
%       \usebox0
%     \fi
%   \else
%     \lwbox
%   \fi
% \else
%   \usebox0
% \fi
% \end{quote}
% If you have a \xfile{docstrip.cfg} that configures and enables \docstrip's
% TDS installing feature, then some files can already be in the right
% place, see the documentation of \docstrip.
%
% \subsection{Refresh file name databases}
%
% If your \TeX~distribution
% (\TeX\,Live, \mikTeX, \dots) relies on file name databases, you must refresh
% these. For example, \TeX\,Live\ users run \verb|texhash| or
% \verb|mktexlsr|.
%
% \subsection{Some details for the interested}
%
% \paragraph{Unpacking with \LaTeX.}
% The \xfile{.dtx} chooses its action depending on the format:
% \begin{description}
% \item[\plainTeX:] Run \docstrip\ and extract the files.
% \item[\LaTeX:] Generate the documentation.
% \end{description}
% If you insist on using \LaTeX\ for \docstrip\ (really,
% \docstrip\ does not need \LaTeX), then inform the autodetect routine
% about your intention:
% \begin{quote}
%   \verb|latex \let\install=y\input{hypdoc.dtx}|
% \end{quote}
% Do not forget to quote the argument according to the demands
% of your shell.
%
% \paragraph{Generating the documentation.}
% You can use both the \xfile{.dtx} or the \xfile{.drv} to generate
% the documentation. The process can be configured by the
% configuration file \xfile{ltxdoc.cfg}. For instance, put this
% line into this file, if you want to have A4 as paper format:
% \begin{quote}
%   \verb|\PassOptionsToClass{a4paper}{article}|
% \end{quote}
% An example follows how to generate the
% documentation with pdf\LaTeX:
% \begin{quote}
%\begin{verbatim}
%pdflatex hypdoc.dtx
%makeindex -s gind.ist hypdoc.idx
%pdflatex hypdoc.dtx
%makeindex -s gind.ist hypdoc.idx
%pdflatex hypdoc.dtx
%\end{verbatim}
% \end{quote}
%
% \begin{History}
%   \begin{Version}{2002/05/10 v1.0}
%   \item
%     First standalone version.
%   \end{Version}
%   \begin{Version}{2006/02/20 v1.1}
%   \item
%     Option \xoption{numbered} added.
%   \item
%     \cs{HD@savedest@init} fixed (empty \xext{hd} file triggered
%     first page with fl ligature).
%   \item
%     Bookmarks for \cs{listoffigures} and \cs{listoftables}.
%   \item
%     Documentation: features and usage added.
%   \item
%     LPPL 1.3.
%   \end{Version}
%   \begin{Version}{2006/04/27 v1.2}
%   \item
%     \cs{HD@target} fixed (\xfile{multicol.dtx}).
%   \end{Version}
%   \begin{Version}{2006/06/01 v1.3}
%   \item
%     Support for package \xpackage{amsdtx}'s \cs{autoindex} added.
%   \end{Version}
%   \begin{Version}{2006/06/02 v1.4}
%   \item
%     Bookmark fixed if there are several table of contents,
%     bibliographies, glossaries, \dots
%   \end{Version}
%   \begin{Version}{2007/04/11 v1.5}
%   \item
%     Line ends sanitized.
%   \end{Version}
%   \begin{Version}{2007/11/12 v1.6}
%   \item
%     Bug fix in \cs{listoffigures} (Axel Sommerfeldt).
%   \item
%     Markup added in implementation section.
%   \end{Version}
%   \begin{Version}{2009/12/10 v1.7}
%   \item
%     Use of package \xpackage{rerunfilecheck}.
%   \end{Version}
%   \begin{Version}{2010/02/03 v1.8}
%   \item
%     Fix for bug latex/4096 added.
%   \end{Version}
%   \begin{Version}{2010/03/26 v1.9}
%   \item
%     Definition of \cs{HD@SetMacroIndex} is provided in the \xext{aux} file.
%   \end{Version}
%   \begin{Version}{2011/05/05 v1.10}
%   \item
%     \cs{raisebox} in \cs{HD@target} with height and depth of \texttt{0pt}
%     (request of GL).
%   \end{Version}
%   \begin{Version}{2011/08/19 v1.11}
%   \item
%     Latest comma in option list for hyperref removed to avoid option clash
%     because of \hologo{LaTeX} 2011/06/27 with the new \cs{in@}.
%   \end{Version}
%   \begin{Version}{2016/05/16 v1.12}
%   \item
%     Documentation updates.
%   \end{Version}
%   \begin{Version}{2016/10/02 v1.13}
%   \item
%     Fixes to bookmarknames, also introduce \cs{changehistoryname}
%   \end{Version}
%   \begin{Version}{2018/09/07 v1.14}
%   \item
%     Do not load \xpackage{thumpdf}.
%   \end{Version}
%   \begin{Version}{2021-11-15 v1.15}
%   \item removed an old, unneeded patch for latex/4096
%   \item added a \cs{pdfstringdefDisableCommands} setting for \cs{autoindex}
%   \end{Version}
%   \begin{Version}{2022-06-14 v1.16}
%   \item Avoid to load hyperref if has been already loaded, issue \#1
%   \end{Version}
%   \begin{Version}{2022-07-03 v1.17}
%   \item Restore defintion of active control-m (issue 3)
%   \end{Version}
%   \begin{Version}{2023-01-23 v1.18}
%   \item made an internal command long for compability with natbib, issue \#6
%   \end{Version}
% \end{History}
%
% \PrintIndex
%
% \Finale
\endinput