summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
Diffstat (limited to 'support')
-rw-r--r--support/checkcites/README4
-rw-r--r--support/checkcites/checkcites-doc.pdfbin290255 -> 290432 bytes
-rw-r--r--support/checkcites/checkcites-doc.tex10
-rw-r--r--support/checkcites/checkcites.lua10
4 files changed, 12 insertions, 12 deletions
diff --git a/support/checkcites/README b/support/checkcites/README
index 2b52dc0bbd..c0aaf6f6b8 100644
--- a/support/checkcites/README
+++ b/support/checkcites/README
@@ -1,5 +1,5 @@
-checkcites.lua -- Version 2.5 from March 22, 2022
-=================================================
+checkcites.lua -- Version 2.6 from August 20, 2022
+==================================================
License
-------
diff --git a/support/checkcites/checkcites-doc.pdf b/support/checkcites/checkcites-doc.pdf
index 4265f23822..80ea37f781 100644
--- a/support/checkcites/checkcites-doc.pdf
+++ b/support/checkcites/checkcites-doc.pdf
Binary files differ
diff --git a/support/checkcites/checkcites-doc.tex b/support/checkcites/checkcites-doc.tex
index a0a976d6b0..bdf0d85bf8 100644
--- a/support/checkcites/checkcites-doc.tex
+++ b/support/checkcites/checkcites-doc.tex
@@ -20,7 +20,7 @@
\newcommand{\checkcites}{\texttt{checkcites}}
\newcommand{\email}[1]{\small\texttt{#1}}
-\newcommand{\version}{Version 2.5 from March 22, 2022.}
+\newcommand{\version}{Version 2.6 from August 20, 2022.}
\newenvironment{infoblock}[1]
{\par\addvspace{\medskipamount}
@@ -228,7 +228,7 @@ $ checkcites
| _| | -_| _| '_| _| | _| -_|_ -|
|___|_|_|___|___|_,_|___|_|_| |___|___|
-checkcites.lua -- a reference checker script (v2.5)
+checkcites.lua -- a reference checker script (v2.6)
Copyright (c) 2012, 2019, Enrico Gregorio, Paulo Cereda
Copyright (c) 2022, Enrico Gregorio, Island of TeX
@@ -265,7 +265,7 @@ $ checkcites --help
| _| | -_| _| '_| _| | _| -_|_ -|
|___|_|_|___|___|_,_|___|_|_| |___|___|
-checkcites.lua -- a reference checker script (v2.5)
+checkcites.lua -- a reference checker script (v2.6)
Copyright (c) 2012, 2019, Enrico Gregorio, Paulo Cereda
Copyright (c) 2022, Enrico Gregorio, Island of TeX
@@ -327,7 +327,7 @@ $ checkcites document.aux
| _| | -_| _| '_| _| | _| -_|_ -|
|___|_|_|___|___|_,_|___|_|_| |___|___|
-checkcites.lua -- a reference checker script (v2.5)
+checkcites.lua -- a reference checker script (v2.6)
Copyright (c) 2012, 2019, Enrico Gregorio, Paulo Cereda
Copyright (c) 2022, Enrico Gregorio, Island of TeX
@@ -469,7 +469,7 @@ $ checkcites --backend biber document.bcf
| _| | -_| _| '_| _| | _| -_|_ -|
|___|_|_|___|___|_,_|___|_|_| |___|___|
-checkcites.lua -- a reference checker script (v2.5)
+checkcites.lua -- a reference checker script (v2.6)
Copyright (c) 2012, 2019, Enrico Gregorio, Paulo Cereda
Copyright (c) 2022, Enrico Gregorio, Island of TeX
diff --git a/support/checkcites/checkcites.lua b/support/checkcites/checkcites.lua
index 1ab7b9fa6d..2d9b70e25a 100644
--- a/support/checkcites/checkcites.lua
+++ b/support/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 ' ..