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
|
glossaries change log:
v4.33 (2017-09-20):
* Removed makeglossaries.bat (TeX distributions on Windows
convert the Perl script to makeglossaries.exe, so the
.bat file isn't needed.)
* makeglossaries and makeglossaries-lite.lua now have their
version numbers synchronised with glossaries.sty
* Added makeglossaries-lite.pod (to provide the
makeglossaries-lite.1 man file)
* Updated POD at the end of makeglossaries
* Added example-glossaries-symbolnames.tex for use in any MWE
requiring symbols in the name fields.
* Tidied up the user manual and guide for beginners.
* glossaries.sty:
- added package option nolangwarn
- added package option esclocations
- added \GlsSetXdyNumberGroupOrder
- added starred form of \GlsSetXdyFirstLetterAfterDigits
v4.32 (2017-08-24):
* glossaries.sty:
- added debug=showtargets and associated commands
\@glsshowtarget and \glsshowtarget
* glossary-hypernav.sty:
- added \@glsnavhypertarget
v4.31 (2017-08-10):
* glossaries.sty:
- Bug fix: 'nolist' option sets default style to \relax
if currently set to 'list' to prevent trying to set an
undefined style.
v4.30 (2017-06-11):
* glossaries.sty:
- Added sort=none option
- Added \glosortentrieswarning
- Added \@glo@autosee
- Fixed bug occurring with \setupglossaries{sort=def}
- Fixed bug in \@xdyuserlocationnames
- Fixed bug in \@xdylocationclassorder
- Added \@xdycrossrefhook
- Added \@glo@check@sortallowed
- Fixed bug in \printnoidxglossary with group skips in
tabular styles
* makeglossaries v2.21:
- Fixed spelling mistake in warning message
(\GlsAddLocation -> \GlsAddXdyLocation)
- Adjusted range encap clash correction
v4.29:
* glossaries-accsupp.sty: corrected check for glossaries-extra
'accsupp' option.
* glossaries.sty: moved definition of \@gls@currentlettergroup
before \begin{theglossary} and made redefinitions of it within
theglossary global to guard against scoping issues cause by
tabular-like glossary styles.
* glossary-hypernav.sty: added \glsnavhyperlinkname
v4.28:
* glossaries.sty: added \glspatchtabularx
v4.27:
* Version number updated in *.sty files, but no actual code
change.
* makeglossaries v2.20 and makeglossaries-lite.lua v1.3:
- Added check for \glsxtr@makeglossaries
v4.26:
* glossaries.sty:
- added check for classicthesis.sty (if it's been loaded
the default style is changed to "index" since the "list"
style doesn't work with classicthesis.)
* glossary-tree.sty:
- new commands \glstreeitem, \glstreesubitem and
\glstreesubsubitem provided for the "index" style
to make the style easier to adjust.
- replaced hard-coded \space with \glstreepredesc
or \glstreechildpredesc for all glossary-tree styles
except for the alttree* styles.
* glossary-mcol.sty:
- The "mcolindex" and "mcolindexspannav" styles
use the new \glstreeitem, \glstreesubitem and
\glstreesubsubitem provided by glossary-tree.sty.
v4.25:
* glossaries.sty:
- bug fix
http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=111
v4.24:
* glossaries.sty:
- added debug and seenoindex option
- added \GlsSetWriteIstHook and \GlsSetQuote
- added \@gls@extramakeindexopts for makeglossaries
and makeglossaries-lite.lua (allow makeindex -g
for German documents)
* makeglossaries (2.19):
- Improved check in &parse_for_xindy_nosort
- Added check for \@gls@extramakeindexopts
* makeglossaries-lite.lua (1.2):
- Added check for nil codepage
v4.23
* glossaries.sty:
- added \glscurrentfieldvalue
* tabular-like styles (glossary-long.sty etc):
- bug fix (nogroupskip in tabular styles with "noidx" commands)
http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=108
v4.22:
* glossaries.sty:
- added \gls@arabicpage
- added \ifglswrallowprimitivemods
- added \glsentrytitlecase
* glossary-tree.sty:
- new formatting commands \glstreegroupheaderfmt
and \glstreenavigationfmt to
make it easier to customize styles
- new command \glsfindwidesttoplevelname
* glossary-mcols.sty:
- hard-coded \textbf replaced with
\glstreegroupheaderfmt or \glstreenavigationfmt,
as appropriate
- added new styles mcolindexspannav, mcoltreespannav,
mcoltreenonamespannav, mcolalttreespannav
* glossary-list.sty:
- new formatting commands \glslistgroupheaderfmt
and \glslistnavigationitem to make it easier to
customize styles
- fixed missing space before description in list
style sub-entries.
* glossary-super.sty:
- fixed bug in super4col style
* glossary-long.sty:
- fixed bug in long style (typo in \glossentrydesc
for sub-entries)
v4.21:
* glossaries.sty:
- Added warning if there's no default style.
* glossary-longbooktabs.sty - new package
* makeglossaries (2.18):
- Added extra diagnostic if xindy's empty index key
warning/error occurs.
- Added check for makeindex's multiple encap warning
and attempt to fix.
* glossaries-user.tex:
- Fixed typo: \DefineAcronymShortcuts should be
\DefineAcronymSynonyms
v4.20:
* makeglossaries (2.17) bug fix
http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=101
(No changes to any of the *.sty files, except the version number.)
v4.19:
* glossaries.sty:
- Added commands: \glsdoifexistsordo,
\doifglossarynoexistsordo
- Added some new internals that will be used by pending new
package glossaries-extra.sty
* glossary-tree.sty:
- Added \glstreenamebox
v4.18:
* mfirstuc removed from glossaries bundle and now
needs to be installed separately
v4.17:
* makeglossaries-lite.lua:
- changed #! line "lua" to "texlua"
* mwe-acr.tex and mwe-acr-desc.tex:
- fixed misplaced \setacronymstyle
v4.16:
* Added makeglossaries-lite.lua (Lua trimmed-down alternative
to Perl makeglossaries script. Doesn't have the full
functionality of makeglossaries but doesn't require Perl.)
* makeglossaries (Perl script):
- fixed ngerman din5007 issue.
* glossaries.sty:
- new field-related commands:
\glsaddstoragekey, \glsfielddef, \glsfieldedef,
\glsfieldgdef, \glsfieldxdef, \glsfieldfetch,
\ifglsfieldeq, \ifglsfielddefeq, \ifglsfieldcseq
- new user command \glswriteentry to hook into mechanism
that writes entry information to the external files
- new user command \glspostlinkhook to hook into end of
commands like \gls and \glstext.
- Added new acronym styles "long-sp-short" and
"long-sp-short-desc"
- bug fix: \glsadd should use \@@do@wrglossary not
\@do@wrglossary
v4.15:
* glossaries.sty:
- bug fix
www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=79
v4.14:
* glossaries.sty:
- Added \glsenableentrycount and associated commands
and accompanying sample file sample-entrycount.tex
that illustrates them.
v4.13:
* glossaries.sty:
- provide a definition of \indexspace if not already defined
for those styles that need it.
* mfirstuc.sty (v1.10):
- added \ecapitalisewords, \emakefirstuc
v4.12:
* glossaries.sty:
- Separated language-dependent code into separate
modules to be independently installed, as required.
- Fixed bugs:
www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=67
www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=69
www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&category=glossaries&key=72
v4.11:
* glossaries.sty:
- Added \glsaddprotectedpagefmt
- Put back the redefinition of \glossary (so that it takes an
optional argument) removed in the previous version to
allow for packages that have hacked the internal glossary
writing mechanism. (This may be removed or moved to a
compatibility mode in the future.)
- Fixed backward compatibility support of deprecated
sanitize=none option
- Fixed bug introduced in v4.10 that caused a conflict with
doc.sty
v4.10:
* Added test file example-glossaries-url.tex
* glossaries.sty:
- Added \glspercentchar and \glstildechar
- Fixed problem with \Glsentryname (and \Glsname)
when used with \setacronymstyle
- No longer redefine \glossary but instead define
a replacement internal command \gls@glossary, and
renamed \@glossary to \@gls@glossary
* glossary-tree.sty:
- Corrected location of space in alttree style with symbols
v4.09:
* Fixed bug in \glsaddkey introduced in v4.08
www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=64
v4.08:
* New files: example-glossaries-*.tex
These contain lorem ipsum dummy entries for testing
new styles or constructing MWEs that require a lot of sample entries
(to be placed on TeX's path)
* glossaries.sty
- new package option: automake
- \newglossary now has a starred version where you don't need
to specify the extensions
- new commands: \forallacronyms, \newignoredglossary
- new keys for \printglossary/\printnoidxglossary:
entrycounter, subentrycounter, nopostdot
- \gls etc now have a +-version (opposite of the *-version)
that explicitly switches on the hyperlink with hyper=true
(unlike the unstarred version that uses the default setting).
- new commands for use within \glsentryfmt or \defglsentryfmt:
\glsifhyperon and \glslinkvar (\glsifhyper now deprecated).
- fixed bug that didn't correctly honour the hyper setting
in commands like \glslink, \gls, glstext, etc under
certain situations.
- fixed bug
www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=54
- added \@gls@hyp@opt and removed now-redundant internal commands
- removed some of the redundancy in commands like \gls
* glossary-longragged.sty:
- Fixed bug in altlongragged4col style that displayed the
description instead of the symbol in the third column.
* glossary-tree.sty:
- Added \glstreenamefmt
* mfirstuc.sty v1.09:
- Added \MFUnocap
* New package: mfirstuc-english.sty
* makeglossaries
- Fixed bug report
http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=55
v4.07:
* glossaries.sty:
- Added \glsletentryfield
- Bug fixes:
- added optional argument to unstarred sectioning
commands (used with package options numberedsection=nolabel
and numberedsection=autolabel)
- added \global prefix to definition of \@gls@loclist
in \@gls@noidx@do in case a tabular-like style is used.
- Fixed no case change bug in \Acrfullplfmt
v4.06:
* glossaries.sty:
- Added \glsifhyper
- Fixed bookmark issue occurring with
"numbers" and "symbols" package options
in combination with hyperref.sty and translator.sty
v4.05:
- Added missing glossaries-prefix.sty to tds
v4.04:
* glossaries.sty:
- new commands: \makenoidxglossaries, \printnoidxglossary
and \printnoidxglossaries that use TeX to sort entries
instead of makeindex/xindy
- new command: \glsnumberlistloop (for use with
\makenoidxglossaries)
- new package option: noredefwarn
- moved definition of \glswrite to \makeglossaries so that write
register is only allocated if required.
- fixed bug in \defglsdisplayfirst
* glossary-tree.sty:
- fixed bug in alttree style
* glossaries-accsupp.sty:
- \compatibleglossentry and \compatiblesubglossentry:
changed \newcommand to \def as they may or may not be
defined depending on whether user has loaded glossaries
separately from glossaries-accsupp
* makeglossaries:
- added -Q and -k switches
- added extra diagnostics
v4.03:
glossaries.sty:
* Added \glsifhasfield
* Changed default definition of \glswritefiles to \@empty
instead of \relax
* Fixed bug in \ifglsdescsuppressed
* Added \glsdetoklabel
* Added \glsdoifexistsorwarn
* Changed \glossentryname etc to use \glsdoifexistsorwarn
instead of \glsdoifexists
* Added \renewacronymstyle
* Fixed bug in dua acronym style
glossaries-accsupp.sty:
* Redefined acronym styles to use accessibility support
makeglossaries v2.12:
* Added check for backslashes in -x, -m and -d arguments
v4.02:
glossaries.sty:
* Added nameref value to 'numberedsection' package option
* New package option: "index"
* New package option: xindynoglsnumbers (equivalent to
xindy={glsnumbers=false})
* Added \newacronymstyle, \setacronymstyle and associated
commands. (Package options "smallcaps", "smaller",
"description", "dua" and "footnote" now deprecated.)
* New commands \acrfullfmt etc to govern the format of
\acrfull etc.
* Made \makeglossaries preamble only
* Bug Fixes:
- \acrlong, \Acrlong, \ACRlong, \acrlongpl,
\Acrlongpl and \ACRlongpl: removed \acronymfont and
spurious parenthetical text.
- \glsentryfull, \Glsentryfull, \glsentryfullpl,
and \Glsentryfullpl: added missing \acronymfont
- Fixed bug in "sanitize" package option (deprecated option,
but still kept for backward compatibility).
v4.01:
* Fixed bug in \CustomAcronymFields caused by missing comma.
* Fixed valueless package options so that they can be passed via
the document class.
v4.0:
First stable release since v3.07.
v3.14a:
* glossaries.sty
- New package options: acronyms, xindygloss, notranslate
- Modified savewrites option so that it can be set via
\setupglossaries
- Enabled compatible-3.07 option in \setupglossaries
- Added \provideglossaryentry and \longprovideglossaryentry
- Bug fix: fixed the default firstplural value to the value of
the plural key.
* glossaries-prefix.sty
- New
* makeglossaries v2.09:
- added check for -q switch when issuing warnings
v3.13a:
* glossaries.sty
- Added \glsprestandardsort
- Renamed \glossarymark to \glsglossarymark to prevent clash
with memoir.
- Made "translate" package option a choice key rather than boolean
- Bug fix for \glsaddallunused:
set default value of optional argument to \@glo@types
- Bug fix for \SetFootnoteAcronymDisplayStyle:
added missing final argument of \ifglshaslong
- Bug fix for \glossarystyle:
replaced \ifdef with \ifcsdef
* mfirstuc.sty (v1.08):
- Made \makefirstuc and \capitalisewords robust
v3.12a:
* glossaries.sty
- Added \glsaddkey (allows the user to add their own custom
keys to glossary entries).
v3.11a:
* glossaries.sty
- Added \setupglossaries
(http://www.dickimaw-books.com/cgi-bin/featuretracker.cgi?action=view&key=7)
- Added \glsentryfmt and \defglsentryfmt
and deprecated \glsdisplayfirst, \glsdisplay,
\defglsdisplayfirst and \defglsdisplay
(http://www.dickimaw-books.com/cgi-bin/featuretracker.cgi?action=view&key=13)
- Added \longnewglossaryentry
- Added \ifglshasshort and \ifglshaslong
- Added check in \glsgetgrouptitle for non-Latin characters
- Added compatible-3.07 package option
- Added "symbols" and "numbers" package options
(http://www.dickimaw-books.com/cgi-bin/featuretracker.cgi?action=view&key=16)
- Added \printacronyms[opts] as a synonym for
\printglossary[type=\acronymtype,opts]
if "acronym" package option is used and
"compatible-3.07" package has not been used
and \printacronym doesn't already exist at the start
of the document.
- Added \showgloshort and \showglolong
- Fixed bug in \@gls@noexpand@fields
- Fixed bug in \gls@defglossaryentry that didn't set the default
counter correctly
- Now uses \mfirstucMakeUppercase instead of \MakeUppercase
to be consistent with mfirstuc.
- Now requires textcase (better handling of case changes)
* mfirstuc (v1.07)
- Added \mfirstucMakeUppercase to allow the user to switch from
\MakeUppercase to another case changing command.
* makeglossaries (v2.08)
- Added -x and -m switches
v3.10a:
* glossaries.sty
- Added \providecommand to aux file in case user removes
the glossaries package from their document. (This ensures
the next run doesn't throw a load of undefined control
sequence errors when the aux file is parsed.)
- Fixed new code (from v3.08a) so that document can still
compile if entries are defined within the document after
\printglossary or \printglossaries
v3.09a:
* glossaries.sty
- Added fix for \RecordChanges if doc.sty has been loaded
- Fixed noexpand for symbolplural field
(http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=41)
- Made \Glsentryname, \Glsentrytext etc robust
- Fixed bug in footnote option
(http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=37)
- Fixed bug where acronym starts with repeated letter
(www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=34)
- Added \glstextup which checks for \textulc
(http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=40)
v3.08a:
* glossaries.sty
- Changed the way information is written to external glossary
files. Information is now written as just \glossentry{label}
or \subglossentry{level}{label} instead of
\glossaryentryfield{label}{name}{description}{symbol} or
\glossarysubentryfield{level}{label}{name}{description}{symbol}
This means that descriptions can span multiple paragraphs
without exceeding makeindex's buffer.
- Added \setglossarystyle (replaces \glossarystyle which is now
just for backward compatibility)
- New user commands:
\glossentryname, \Glossentryname,
\glossentrydesc, \Glossentrydesc,
\glossentrysymbol, \Glossentrysymbol,
\glsexpandfields, \glsnoexpandfields,
\glsaddallunused,
\ifglshassymbol, ifglshasdesc
- Added nogroupskip option to \printglossary
- Added \gls@ifnotmeasuring
- Made \glsseeformat, \glsseelist, \glsseeitem and \glssee robust
* glossary-tree.sty
- Added \par to end of theglossary environment for index style.
(http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?action=view&key=38)
v3.07:
* glossaries.sty
- Fixed bug relating to nohypertypes list option
- Added \setglossarypreamble (code provided by Michael Pock)
- Modified \glspostdescription to adjust spacefactor before full
stop. (Patch provided by Michael Pock.)
- Added check for openright in \gls@doclearpage
- Added \glsdoparenifnotempty
- Made \findrootlanguage obsolete
makeglossaries:
- Added languagemap to determine root language
v3.06:
* glossaries.sty
- Fixed incompatibility between glossaries and new version of babel.
* makeglossaries
- added babel dialect -> xindy language map
v3.05:
* glossaries.sty
- fixed bugs related to location numbering (Roman and Alph).
- made \nopostdesc robust
- clarified in the documentation that \makeglossaries must be
used before cross-referenced entries
- added missing 'nohypertypes' code
* makeglossaries:
- added "din5007" as the default to makeglossaries if the
language is german
* glossary-mcols.sty:
- Fixed bug -> \begin{multicols}{2} replaced with \begin{multicols}{\glsmcols}
v3.04:
* added 'nohypertypes' package option
* added new commands: \GlsDeclareNoHyperList and \glsIfNoHyperType
* added 'local' key to \glsdisp, \gls, \Gls and \GLS
* added check for doc package
* fixed bug in altlist that can cause an unintentional page break
between entry and description.
* fixed bug that causes extra space after glossary when using
xindy
* fixed bug that was introduced by the bug fix in 3.02 regarding wrong
page number
makeglossaries v2.05:
* added -d option
v3.03:
* fixed bug in \printglossary options: title now also sets
toctitle if toctitle missing (as per documentation).
* added sanitize={sort=false} option
* added nopostdot package option
* added nogroupskip package option
glossary-inline.sty added:
- \glsinlinenameformat
- \glsinlinedescformat
- \glsinlineemptydescformat
- \glsinlinesubnameformat
- \glsinlinesubdescformat
- \glsinlinepostchild
v3.02:
* new package options:
- 'ucmark'
- 'indexonlyfirst'
- 'savenumberlist'
* new glossary styles:
- glossary-mcol.sty
- glossary-inline.sty
* new commands:
- \glolinkprefix
- \glsmoveentry
- \renewglossarystyle
- \ifglshaschildren
- \ifglshasparent
- \glsresetentrycounter
- \glsentrynumberlist
- \glsdisplaynumberlist
* added check to \glswritefiles to see if glossary tokens have
been defined in case savewrites option used and \makeglossaries
omitted.
* fixed bug in \showglossaryentries
* fixed bug in \SmallNewAcronymDef
* fixed unwanted space in
\SetDescriptionFootnoteAcronymDisplayStyle
* fixed [xindy] wrong page number bug for entries occurring in
paragraph spanning page break
* fixed bug in \Glsentryfull and \glsentryfullpl
* swapped order of checks for babel and polyglossia
mfirstuc v1.06:
* added \capitalisewords, \xcapitalisewords
makeglossaries v2.04:
* fixed bug in &scan_aux
v3.01:
* made commands like \glslink, \gls and \acrshort robust
* Fixed bugs in commands like \acrfullpl which was missing the
plural in some cases.
* Removed \acronymfont from \acrfullformat as it's already used
in the second argument passed to that command. (Causes a
problem with the "smaller" option.)
v3.0 (Major changes):
* Documentation has been restructured:
- glossaries-user: main user manual
- glossariesbegin: cut-down introduction for beginners
- mfirstuc-manual: user manual for mfirstuc package
- glossaries.pdf: documented code for advanced users
- glossary2glossaries: upgrading from glossary.sty to glossaries.sty
* Added new package options:
- entrycounter : number main (level 0) entries in the glossary.
- counterwithin : set parent counter for the entry counter.
- subentrycounter : number level 1 entries in the glossary.
- sort : set the sort order to
- standard alphabetical (sort=standard),
- order of definition (sort=def)
- order of use (sort=use)
- seeautonumberlist : automatically activates the number list
for entries that use the "see" key.
- savewrites : minimise number of \newwrite
- compatible-2.07 :
bug fixes in v3.0 have cause compatibility problems. This
package option will restore the old behaviour but bugs will
remain. (Should mostly only effect documents that used
\noist with a custom Xindy style file.)
* \printglossary sets \currentglossary to the current glossary's
label. (Allows custom glossary styles access to the glossary
type.)
* Modified internal workings of acronyms and:
- Added starred versions of \acrshort etc.
- Added "long", "short", "longplural" and "shortplural" keys
(Reserved for use with \newacronym.)
- Added analogous "longaccess", "shortaccess", "longpluralaccess"
and "shortpluralaccess" keys for \newacronym in
glossaries-accsupp.sty
* Added \glsseeitemformat to customise the text given in the link
created by \glsseeitem.
* \newglossaryentry key "nonumberlist" now boolean.
* added debugging commands \showgloname etc.
* now loads etoolbox:
- replaced \DeclareRobustCommand with \newrobustcmd
- replaced \@ifundefined with \ifcsundef
- replaced \let...\undefined with \undef...
* Bug Fixes:
- now works with equation counter in amsmath's align
environment.
- Mixed counters now work with xindy option.
- Fixed hyperlinks in location numbers where \theH<counter>
has a prefix not present in \the<counter>.
- If title specified in \printglossary but toctitle hasn't
been specified, make toctitle same as supplied title.
- \newglossaryentry "see" key and \glssee now sanitize and escape
special characters before writing to output file. (Allows
user to redefine \seename any point before \printglossary or
\printglossaries.)
- \glshyperlink: Changed the default value of the optional argument
to \glsentrytext instead of \glsentryname.
* mfirstuc.sty (v1.05):
- added \glsmakefirstuc (replaces \@gls@makefirstuc) to make
it easier to customise.
makeglossaries (v2.02):
* now displays version number on startup unless -q
* added more diagnostics to give more helpful messages than
those supplied by xindy or makeindex.
v2.07:
* Fixed bug that ignored format key in \glsadd
makeglossaries:
* Fixed bug causing failure to process aux files containing \@input
v2.06:
* Added \altnewglossary
* added facility to customise acronyms if the predefined styles
don't fit the user's requirements.
* Serbian dictionary added (provided by Zoran Filipovic)
makeglossaries:
* Scans aux file for \@input in case \printglossary is in an
imported file.
v2.05:
* Fixed error in .ist file and in \glsdisp caused by a
misplace brace. (Patch provided by Sergiu Dotenco).
v2.04:
* Improved support for multiple lists of acronyms.
* Fixed bug that caused \glsadd to ignore counter option
* Fixed bug that causes babel to override translator's definition
of \glossaryname.
* Added user1, ... , user6 keys.
* Added polyglossia support
* makeglossaries now creates stub output file if input file is
empty
glossaries-accsupp v0.2:
* Added access keys.
* Added support for acronyms.
mfirstuc v1.04:
* fixed bug occurring when initial control sequence
in the argument of \makefirstuc has more than one
argument.
v2.03:
* Added check to see if \glossarymark has been defined
* makeglossaries - failed file test messages printed to
stdout instead of stderr (so that it doesn't interrupt
latexmk).
* Fixed bug when entries used at the start of a paragraph.
* Added package option hyperfirst (boolean option to suppress
hyperlink on first use).
* Added pod to makeglossaries.
v2.02:
* Renamed glossaries-dictionary-Brazil.dict to
glossaries-dictionary-Brazilian.dict
* Replaced \@mkboth with \glossarymark in \glossarysection
to make it easier for the user to override it
* Fixed bug that generated no \printglossary warning when
the glossary is placed in a group
* translate=false option will now prevent automatic loading
of translator package.
v2.01:
* Documentation changes:
- removed quick guide section from glossaries.pdf and replaced
it with a separate beginners guide (glossariesbegin.pdf)
- added a section for front-end or script developers who
want to access information from the aux file
* Added new ragged right versions of long/super styles
* Added 'nomain' package option to suppress the creation of the
main glossary
* Added 'nowarn' package option to suppress warnings
* Removed unwanted full stops in transcript messages
* Changed \linewidth to \hsize when setting lengths
* Removed item_02 key from makeindex style file (no such key)
* Moved \@do@wrglossary before term is displayed to prevent
unwanted whatsit
v2.0 (1.20):
* Fixed ngerman caption bug in glossaries-babel.sty
v1.19:
* changed \acronymfont to use \textsmaller instead of \smaller
(for "smaller" package option)
* Added \glsdisp (similar to \glslink except that it uses
\glsdisplay/glsdisplayfirst and unsets the first use flag)
* Added experimental package glossaries-accsupp which
requires accsupp package.
v1.18:
* fixed missing closing } in glossaries-babel.sty
* added \glstarget so that glossary styles can be modified
in the document without using internal commands.
* glossary-super.sty isn't loaded if supertabular.sty isn't
installed.
* added nolong, nosuper, nolist, notree and nostyles package
options to prevent loading unnecessary packages.
* added \oldacronym (emulates the old glossary package's
\newacronym command).
* added sublistdotted style.
* fixed bug caused by misspelt \glspagewidthlist (should be
\glspagelistwidth).
* fixed border in super4colheaderborder and
altsuper4colheaderborder styles.
* fixed sort sanitization when package option sanitize={name=false}
is used.
v1.17:
* changed definition of \@glossary to prevent conflict with
memoir
* added check to determine if \printglossary is defined. (If
it is, issue warning and redefine.)
* provided means to suppress number list for specific entries
* provided means to suppress description terminator for
specific entries
* added cross-referencing support
* added hierarchical support
* added xindy support
* modified \glshypernumber to support \nohyperpage
(code provided by Heiko Oberdiek)
* added 2 and 3-page suffix support
* added "order" package option to set word/letter ordering
(only has an effect in combination with makeglossaries script)
* added Brazilian dictionary (supplied by Thiago de Melo)
v1.16 :
* fixed bug that causes footnote option to remove hyperlink
for first use entries in glossaries other than the list
of acronyms. (footnote option should only affect entries
in \acronymtype glossary.)
* Raised hypertarget so that links to glossary entries don't
scroll off the top of the page.
* Fixed expansion-related bug (thanks to fix provided by
Ulrich Diez)
v1.15 :
* added \glslabel
* added altlong4col* and altsuper4col* styles
* fixed PDF encoding problem caused when both translator
and hyperref packages are being used
* fixed bug when using smallcaps and smaller options that causes
the long form in the list of acronyms to be the same for each
entry
* Added warnings when rerun required when using glossary
group hyper navigation
glossaries.perl v1.04:
* add do_cmd_glslabel
* changed links to the start of the relevant glossary entry
rather than the entry's backlink
* added implementation of starred forms of \gls etc
* added frame related code if frames.pl has been loaded
v1.14 :
* Fixed bug in \glsnavhyperlink that causes an error when used
with hyperref and translator packages.
* Added \glsautoprefix (specifies a prefix to the automatically
generated label)
* Added nonumberlist and numberedsection keys to \printglossary
* Changed \glsnavigation so that it only lists the groups that
are present. (This prevents unknown target warnings.)
* Amended documentation.
mfirstuc v1.02 (18 June 2008):
* Fixed bug that transfered grouping, (e.g
\makefirstuc{\emph{abc}xyz} moved the xyz into the \emph)
* If group following initial command is empty, \MakeUppercase
is applied to the command, e.g. \makefirstuc{\ae{}bc} now
produces \MakeUppercase\ae{}bc.
v1.13 :
* Fixed bug in long4colheaderborder that puts an extra row
at the end of the glossary.
* Fixed bug in \glstext etc that ignored 3rd argument (thanks
to Franz Fischer for pointing this out).
* Removed only preamble restriction on \newglossaryentry and
\newacronym.
* Added \glspluralsuffix.
* Changed firstplural default so that it takes its value from
the plural key if the first key is omitted.
* Added \acrshortpl, \Acrshortpl, \ACRshortpl, \acrlongpl,
\Acrlongpl, \ACRlongpl, \acrfullpl, \Acrfullpl, \ACRfullpl.
* Fixed bugs in \Acrshort etc.
* Add package options "smaller" and "shortcuts".
* Acronym default plural forms now implemented for the additional
acronym styles.
* Fixed makeglossaries to allow filenames with spaces.
* Fixed error in documentation describing \glsaddall
- optional argument should be a key=value list.
* Added Polish support (thanks to Piotr Formella for supplying
the translations).
* If babel is loaded and translator package is found on TeX's
path, then the translator package will now be automatically
loaded.
mfirstuc v1.01 (13 May 2008):
* Added \xmakefirstuc (expands argument before applying \makefirstuc)
v1.12 (8 March 2008):
* Fixed bug that causes \glspl to print the plural short form
on first use instead of the plural long form.
* Added descriptionplural and symbolplural keys.
* Added \glsshortkey, \glsshortpluralkey, \glslongkey and
\glslongpluralkey.
* Fixed bugs in \glsname, \glstext, \glsdesc etc.
* Added a check for \hypertarget in addition to checking
for \hyperlink (in the event that \hyperlink is defined
but not \hypertarget).
* Changed #! line in makeglossaries to use /usr/bin/env
* Added package mfirstuc.sty which provides the command
\makefirstuc{<stuff>} which makes the first object of
<stuff> uppercase unless <stuff> starts with a control
sequence followed by a group, in which case the first
object in the group is converted to uppercase. Examples:
\makefirstuc{abc} -> Abc
\makefirstuc{\emph{abc}} -> \emph{Abc}
\makefirstuc{{\'a}bc} -> {\'A}bc
\makefirstuc{\ae bc} -> \AE bc
\makefirstuc{{\ae}bc} -> {\AE}bc
(but don't do \makefirstuc{\ae{}bc} which produces \ae Bc.)
v1.11 (2 March 2008):
* Fixed error in manual (glossary style is set using \glossarystyle
not \setglossarystyle).
* Changed the way the package is archived to make it compatible
with TeX Live.
* Improved error handling of makeglossaries and added --version
and --help options.
v1.1 (22 Feb 2008):
* New package options:
- numberline:
inserts \numberline{} in \addcontentsline when used with
the toc option.
- numberedsection:
puts glossaries in numbered chapters/sections
- translate:
translate=false option prevents glossaries package from
using pre-supplied translations.
- description:
changes definition of \newacronym to allow a description
- footnote:
changes definition of \newacronym to use a footnote on
first use
- smallcaps:
changes definition of \newacronym to set acronyms in
small capitals
- dua:
changes definition of \newacronym to always expand
acronyms
* Added \setglossarysection
- changes the section type used by the glossaries
* Added listdotted glossary style.
* No longer uses xspace package; uses amsgen instead.
* Added \glsname, \glsdesc, \glssymbol, \glsfirst, \glstext,
\glsplural and \glsfirstplural.
* Added support for translator package.
v1.08 (13 Oct 2007):
* Added multilingual support
* Fixed bug in listgroup and altlistgroup styles so that
\glsgroupheading uses \glsgetgrouptitle to get the group title
instead of displaying the label
* Fixed typo in error message text when the description key
is missing to \newglossaryentry.
v1.07 (13 Sep 2007):
* Fixed bug causing incorrect page number for entries in the
first paragraph of a page.
v1.06 (21 Aug 2007):
* Changed the license text
v1.05 (10 Aug 2007):
* Changed the default value of the sort key to just use the
name key
* Added \@mkboth to \glossarysection
v1.04 (3 Aug 2007):
* Added \glstextformat
v1.03 (4 July 2007):
* Added \glspostdescription
v1.02 (25 May 2007):
* Added overview section in the documentation
v1.01 (17 May 2007):
* Added number range facility (equivalent to makeindex's |( and |)
formatting commands.)
* Added a space after \delimN and \delimR in the ist file.
v1.0 (16 May 2007): Initial release
|