diff options
author | Karl Berry <karl@freefriends.org> | 2022-08-20 20:17:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-08-20 20:17:40 +0000 |
commit | c2209335dcf515f8013ea41728a7a056d05c2f61 (patch) | |
tree | c26e8fe9113831d5c1130a0837234cc245b7227b /Master/texmf-dist/scripts | |
parent | 80853f114c8dcb62b7fb4c44a6d5dda12f756750 (diff) |
checkcites (20aug22)
git-svn-id: svn://tug.org/texlive/trunk@64155 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/checkcites/checkcites.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/texmf-dist/scripts/checkcites/checkcites.lua b/Master/texmf-dist/scripts/checkcites/checkcites.lua index 1ab7b9fa6d0..2d9b70e25a9 100755 --- a/Master/texmf-dist/scripts/checkcites/checkcites.lua +++ b/Master/texmf-dist/scripts/checkcites/checkcites.lua @@ -372,8 +372,8 @@ backends.biber = function(lines, _) local citations, bibliography = {}, {} local asterisk, parts, hit = false for _, line in ipairs(lines) do - hit = string.match(line, '^%s*<bcf:citekey order="%d+">' .. - '(.+)</bcf:citekey>$') + hit = string.match(line, '^%s*<bcf:citekey order="%d+" ' .. + 'intorder="%d+">(.+)</bcf:citekey>$') if hit then if hit ~= '*' then parts = split(hit, '[^,%s]+') @@ -486,7 +486,7 @@ print("| _| | -_| _| '_| _| | _| -_|_ -|") print("|___|_|_|___|___|_,_|___|_|_| |___|___|") print() print(wrap('checkcites.lua -- a reference ' .. - 'checker script (v2.5)', 74)) + 'checker script (v2.6)', 74)) print(wrap('Copyright (c) 2012, 2019, Enrico Gregorio, Paulo Cereda', 74)) print(wrap('Copyright (c) 2022, Enrico Gregorio, Island of TeX', 74)) end @@ -670,8 +670,8 @@ local function checkcites(args) if keys['version'] or keys['help'] then if keys['version'] then print() - print(wrap('checkcites.lua, version 2.5 (dated March ' .. - '22, 2022)', 74)) + print(wrap('checkcites.lua, version 2.6 (dated August ' .. + '20, 2022)', 74)) print(pad('-', 74)) print(wrap('You can find more details about this ' .. |