diff options
author | Karl Berry <karl@freefriends.org> | 2020-12-13 22:04:56 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-12-13 22:04:56 +0000 |
commit | 39109ece01b0a29d2006e0d1364c30892bba60be (patch) | |
tree | ea297ab5422a25ae57b4236323a69f1e5b6affb5 /Master/texmf-dist/tex/latex/enotez | |
parent | ae96c648310b09af5b42cf70cc78309c898c65ef (diff) |
enotez (13dec20)
git-svn-id: svn://tug.org/texlive/trunk@57130 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/enotez')
-rw-r--r-- | Master/texmf-dist/tex/latex/enotez/enotez.sty | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/Master/texmf-dist/tex/latex/enotez/enotez.sty b/Master/texmf-dist/tex/latex/enotez/enotez.sty index 4019b65791d..a5d7c94e479 100644 --- a/Master/texmf-dist/tex/latex/enotez/enotez.sty +++ b/Master/texmf-dist/tex/latex/enotez/enotez.sty @@ -5,18 +5,18 @@ % % -------------------------------------------------------------------------- % Clemens Niederberger -% Web: https://bitbucket.org/cgnieder/enotez/ +% Web: https://github.com/cgnieder/enotez/ % E-Mail: contact@mychemistry.eu % -------------------------------------------------------------------------- % Copyright 2012--2020 Clemens Niederberger % % This work may be distributed and/or modified under the -% conditions of the LaTeX Project Public License, either version 1.3 +% conditions of the LaTeX Project Public License, either version 1.3c % 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. +% and version 1.3c or later is part of all distributions of LaTeX +% version 2008/05/04 or later. % % This work has the LPPL maintenance status `maintained'. % @@ -31,8 +31,8 @@ \RequirePackage {expl3,xparse,l3keys2e,xtemplate} \ProvidesExplPackage {enotez} - {2020/01/16} - {0.10b} + {2020/12/13} + {0.10c} {Endnotes for LaTeX2e} % -------------------------------------------------------------------------- @@ -114,12 +114,9 @@ \skip_set_eq:NN \l__enotez_list_postamble_skip \medskipamount \int_new:N \g__enotez_endnote_id_int -\int_zero:N \g__enotez_endnote_id_int \int_new:N \g__enotez_endnote_mark_int -\int_zero:N \g__enotez_endnote_mark_int \newcounter {endnote} \int_new:N \g__enotez_list_printed_int -\int_zero:N \g__enotez_list_printed_int \int_new:N \l__enotez_tmpa_int \prop_new:N \g__enotez_endnote_text_prop @@ -330,7 +327,8 @@ \cs_new_protected:Npn \enotez@note #1#2#3#4#5#6#7 { - \tl_gset:cn {enotez@#1@note} {#2} + \tl_gclear_new:c {g__enotez_#1_note_tl} + \tl_gset:cn {g__enotez_#1_note_tl} {#2} \prop_gput:Nnn \g__enotez_endnote_mark_prop {#1} {#2} \prop_gput:Nnn \g__enotez_endnote_split_prop {#1} {#3} \prop_gput:Nnn \g__enotez_endnote_sect_prop {#1} {#4} @@ -345,7 +343,7 @@ \cs_set_protected:Npn \enotez@note #1#2#3#4#5#6#7 { \tl_set:Nn \l__enotez_change_tl {#2} - \tl_if_eq:cNF {enotez@#1@note} \l__enotez_change_tl + \tl_if_eq:cNF {g__enotez_#1_note_tl} \l__enotez_change_tl { \@latex@warning@no@line { Endnotes~may~have~changed.~Rerun~to~get~them~right. } @@ -1024,3 +1022,4 @@ - implement issue #9 2019/10/12 v0.10a - remove unnecessary package dependencies 2020/01/16 v0.10b - adapt to renaming of string case changing functions +2020/12/13 v0.10c - fix issue #23 |