summaryrefslogtreecommitdiff
path: root/biblio
diff options
context:
space:
mode:
Diffstat (limited to 'biblio')
-rw-r--r--biblio/bibtex/bibtex-x/ChangeLog11
-rw-r--r--biblio/bibtex/bibtex-x/Makefile.am15
-rw-r--r--biblio/bibtex/bibtex-x/Makefile.in3
-rw-r--r--biblio/bibtex/bibtex-x/bibtex-4.c15
-rw-r--r--biblio/bibtex/bibtex-x/configure.ac4
-rwxr-xr-xbiblio/bibtex/bibtex-x/configure.texk22
-rwxr-xr-xbiblio/bibtex/bibtex-x/tests/bibtexu-char.test20
-rwxr-xr-xbiblio/bibtex/bibtex-x/tests/bibtexu-iscjk.test57
-rw-r--r--biblio/bibtex/bibtex-x/tests/iscjku.bbl1
-rw-r--r--biblio/bibtex/bibtex-x/tests/testiscjku.bib1
-rw-r--r--biblio/bibtex/bibtex-x/version.h2
-rw-r--r--biblio/ctan-bibdata/ctan.bib41
12 files changed, 134 insertions, 58 deletions
diff --git a/biblio/bibtex/bibtex-x/ChangeLog b/biblio/bibtex/bibtex-x/ChangeLog
index d9e4e352ca..d2822854d2 100644
--- a/biblio/bibtex/bibtex-x/ChangeLog
+++ b/biblio/bibtex/bibtex-x/ChangeLog
@@ -1,3 +1,14 @@
+2023-12-16 TANAKA Takuji <ttk@t-lab.opal.ne.jp>
+
+ * configure.ac, version.h:
+ Bump version to 4.02 (16 dec 2023).
+ * bibtex-4.c:
+ Support characters defined by Unicode 15.1.
+ It works with ICU 74.1 or later.
+ * tests/bibtexu-{char,iscjk}.test,
+ tests/iscjku.bbl, tests/testiscjku.bib, Makefile.am:
+ Update tests.
+
2023-08-30 TANAKA Takuji <ttk@t-lab.opal.ne.jp>
* tests/{bibtex8u-mem,bibtexu-char}.test:
diff --git a/biblio/bibtex/bibtex-x/Makefile.am b/biblio/bibtex/bibtex-x/Makefile.am
index b4101f4953..ccd8e02005 100644
--- a/biblio/bibtex/bibtex-x/Makefile.am
+++ b/biblio/bibtex/bibtex-x/Makefile.am
@@ -1,4 +1,4 @@
-## $Id: Makefile.am 64353 2022-09-11 22:41:59Z karl $
+## $Id: Makefile.am 69145 2023-12-16 06:51:56Z takuji $
## Makefile.am for the TeX Live subdirectory texk/bibtex-x/
##
## Copyright 2017-2022 Karl Berry <tex-live@tug.org>
@@ -94,7 +94,8 @@ bibtex8_tests = tests/bibtex8.test tests/bibtex8u-mem.test \
tests/bibtex8-sort.test tests/bibtex8-char.test
bibtexu_tests = tests/bibtexu.test tests/bibtexu-basic.test \
tests/bibtexu-range.test tests/bibtexu-yannis.test \
- tests/bibtexu-sort.test tests/bibtexu-char.test
+ tests/bibtexu-sort.test tests/bibtexu-char.test \
+ tests/bibtexu-iscjk.test
TESTS =
if BIBTEX8
@@ -166,15 +167,17 @@ EXTRA_DIST += tests/periodu.aux tests/periodu.bbl tests/testperiodu.bib \
tests/txtprfxu.aux tests/txtprfxu.bbl \
tests/widthu.aux tests/widthu.bbl tests/testwidthu.bib \
tests/charu.aux tests/charu.bbl tests/testcharu.bib \
- tests/nameu.aux tests/nameu.bbl tests/mlgbib.bib \
- tests/iscjku.aux tests/iscjku.bbl tests/testiscjku.bib tests/testiscjk.bst
+ tests/nameu.aux tests/nameu.bbl tests/mlgbib.bib
DISTCLEANFILES += tests/xperiodu.aux tests/xperiodu.bbl tests/xperiodu.blg \
tests/xsubstru.aux tests/xsubstru.bbl tests/xsubstru.blg \
tests/xtxtprfxu.aux tests/txtprfxu.bbl tests/xtxtprfxu.blg \
tests/xwidthu.aux tests/widthu.bbl tests/xwidthu.blg \
tests/xcharu.aux tests/xcharu.bbl tests/xcharu.blg \
- tests/xnameu.aux tests/xnameu.bbl tests/xnameu.blg \
- tests/xiscjku.aux tests/xiscjku.bbl tests/xiscjku.blg
+ tests/xnameu.aux tests/xnameu.bbl tests/xnameu.blg
+##
+## tests/bibtexu-iscjk.test
+EXTRA_DIST += tests/iscjku.aux tests/iscjku.bbl tests/testiscjku.bib tests/testiscjk.bst
+DISTCLEANFILES += tests/xiscjku.aux tests/xiscjku.bbl tests/xiscjku.blg
## Not used
##
diff --git a/biblio/bibtex/bibtex-x/Makefile.in b/biblio/bibtex/bibtex-x/Makefile.in
index f988fbaccf..2066f50e0f 100644
--- a/biblio/bibtex/bibtex-x/Makefile.in
+++ b/biblio/bibtex/bibtex-x/Makefile.in
@@ -676,7 +676,8 @@ bibtex8_tests = tests/bibtex8.test tests/bibtex8u-mem.test \
bibtexu_tests = tests/bibtexu.test tests/bibtexu-basic.test \
tests/bibtexu-range.test tests/bibtexu-yannis.test \
- tests/bibtexu-sort.test tests/bibtexu-char.test
+ tests/bibtexu-sort.test tests/bibtexu-char.test \
+ tests/bibtexu-iscjk.test
TESTS = $(am__append_3) $(am__append_4)
EXTRA_DIST = $(bibtex8_tests) $(bibtexu_tests) tests/exampl.bbl \
diff --git a/biblio/bibtex/bibtex-x/bibtex-4.c b/biblio/bibtex/bibtex-x/bibtex-4.c
index 0a9b09b9a4..c72c38dde4 100644
--- a/biblio/bibtex/bibtex-x/bibtex-4.c
+++ b/biblio/bibtex/bibtex-x/bibtex-4.c
@@ -2818,12 +2818,17 @@ BEGIN
case UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D:
case UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_E:
case UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F:
-#if defined(U_ICU_VERSION_MAJOR_NUM) && (U_ICU_VERSION_MAJOR_NUM > 65)
+#if defined(U_ICU_VERSION_MAJOR_NUM)
+#if U_ICU_VERSION_MAJOR_NUM > 65
case UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_G:
#endif
-#if defined(U_ICU_VERSION_MAJOR_NUM) && (U_ICU_VERSION_MAJOR_NUM > 71)
+#if U_ICU_VERSION_MAJOR_NUM > 71
case UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_H:
#endif
+#if U_ICU_VERSION_MAJOR_NUM > 73
+ case UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_I:
+#endif
+#endif
string_width |= 0x001;
break;
/* kana */
@@ -2831,12 +2836,14 @@ BEGIN
case UBLOCK_KATAKANA:
case UBLOCK_KATAKANA_PHONETIC_EXTENSIONS:
case UBLOCK_KANA_EXTENDED_A:
-#if defined(U_ICU_VERSION_MAJOR_NUM) && (U_ICU_VERSION_MAJOR_NUM > 69)
+#if defined(U_ICU_VERSION_MAJOR_NUM)
+#if U_ICU_VERSION_MAJOR_NUM > 69
case UBLOCK_KANA_EXTENDED_B:
#endif
-#if defined(U_ICU_VERSION_MAJOR_NUM) && (U_ICU_VERSION_MAJOR_NUM > 63)
+#if U_ICU_VERSION_MAJOR_NUM > 63
case UBLOCK_SMALL_KANA_EXTENSION:
#endif
+#endif
string_width |= 0x002;
break;
/* hangul */
diff --git a/biblio/bibtex/bibtex-x/configure.ac b/biblio/bibtex/bibtex-x/configure.ac
index 99d4723147..c9efef5a81 100644
--- a/biblio/bibtex/bibtex-x/configure.ac
+++ b/biblio/bibtex/bibtex-x/configure.ac
@@ -1,4 +1,4 @@
-dnl $Id: configure.ac 67639 2023-07-15 13:46:41Z takuji $
+dnl $Id: configure.ac 69145 2023-12-16 06:51:56Z takuji $
dnl Process this file with autoconf to produce a configure script.
dnl
dnl Copyright 2015-2022 Karl Berry <tex-live@tug.org>
@@ -8,7 +8,7 @@ dnl This file is free software; the copyright holder
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
dnl
-AC_INIT([extended BibTeX (TeX Live)], [4.01], [tex-k@tug.org])
+AC_INIT([extended BibTeX (TeX Live)], [4.02], [tex-k@tug.org])
AC_PREREQ([2.65])
AC_CONFIG_SRCDIR([bibtex-1.c])
AC_CONFIG_AUX_DIR([../../build-aux])
diff --git a/biblio/bibtex/bibtex-x/configure.texk b/biblio/bibtex/bibtex-x/configure.texk
index a7695c4ef8..8b550da0fa 100755
--- a/biblio/bibtex/bibtex-x/configure.texk
+++ b/biblio/bibtex/bibtex-x/configure.texk
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.71 for extended BibTeX (TeX Live) 4.01.
+# Generated by GNU Autoconf 2.71 for extended BibTeX (TeX Live) 4.02.
#
# Report bugs to <tex-k@tug.org>.
#
@@ -629,8 +629,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='extended BibTeX (TeX Live)'
PACKAGE_TARNAME='extended-bibtex--tex-live-'
-PACKAGE_VERSION='4.01'
-PACKAGE_STRING='extended BibTeX (TeX Live) 4.01'
+PACKAGE_VERSION='4.02'
+PACKAGE_STRING='extended BibTeX (TeX Live) 4.02'
PACKAGE_BUGREPORT='tex-k@tug.org'
PACKAGE_URL=''
@@ -1400,7 +1400,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures extended BibTeX (TeX Live) 4.01 to adapt to many kinds of systems.
+\`configure' configures extended BibTeX (TeX Live) 4.02 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1472,7 +1472,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of extended BibTeX (TeX Live) 4.01:";;
+ short | recursive ) echo "Configuration of extended BibTeX (TeX Live) 4.02:";;
esac
cat <<\_ACEOF
@@ -1599,7 +1599,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-extended BibTeX (TeX Live) configure 4.01
+extended BibTeX (TeX Live) configure 4.02
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2280,7 +2280,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by extended BibTeX (TeX Live) $as_me 4.01, which was
+It was created by extended BibTeX (TeX Live) $as_me 4.02, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
@@ -8937,7 +8937,7 @@ fi
# Define the identity of the package.
PACKAGE='extended-bibtex--tex-live-'
- VERSION='4.01'
+ VERSION='4.02'
# Some tools Automake needs.
@@ -19329,7 +19329,7 @@ Usage: $0 [OPTIONS]
Report bugs to <bug-libtool@gnu.org>."
lt_cl_version="\
-extended BibTeX (TeX Live) config.lt 4.01
+extended BibTeX (TeX Live) config.lt 4.02
configured by $0, generated by GNU Autoconf 2.71.
Copyright (C) 2011 Free Software Foundation, Inc.
@@ -21537,7 +21537,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by extended BibTeX (TeX Live) $as_me 4.01, which was
+This file was extended by extended BibTeX (TeX Live) $as_me 4.02, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -21605,7 +21605,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
-extended BibTeX (TeX Live) config.status 4.01
+extended BibTeX (TeX Live) config.status 4.02
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"
diff --git a/biblio/bibtex/bibtex-x/tests/bibtexu-char.test b/biblio/bibtex/bibtex-x/tests/bibtexu-char.test
index e4250d02ef..a0fd1fb462 100755
--- a/biblio/bibtex/bibtex-x/tests/bibtexu-char.test
+++ b/biblio/bibtex/bibtex-x/tests/bibtexu-char.test
@@ -1,5 +1,5 @@
#! /bin/sh -vx
-# $Id: bibtexu-char.test 68115 2023-08-30 11:16:53Z takuji $
+# $Id: bibtexu-char.test 69145 2023-12-16 06:51:56Z takuji $
# Copyright 2022-2023 TANAKA Takuji <ttk@t-lab.opal.ne.jp>
# You may freely use, modify and/or distribute this file.
@@ -7,8 +7,7 @@ BinDir=${BinDir:-.}
ExeExt=${ExeExt:-}
_bibtexu=$BinDir/bibtexu$ExeExt
-test -d tests || mkdir tests
-test -d tests || exit 1
+test -d tests || mkdir -p tests
LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE
#
@@ -55,19 +54,4 @@ cp $srcdir/tests/nameu.aux tests/xnameu.aux
max_print_line=119 $_bibtexu tests/xnameu || rc=13
diff $srcdir/tests/nameu.bbl tests/xnameu.bbl || rc=14
-## test for is.knj.str$
-
-DIFF="diff"; icuver=0
-$_bibtexu --version | grep "ICU version 70" && icuver=70
-if [ $icuver -eq 70 ]; then
- # skip CJK Ideograph Extension H
- # U+31350 -> \360\261\215\220
- uchr='\360\261\215\220'
- DIFF="diff --ignore-matching-lines="`printf "${uchr}"`
- echo "*** skip checking CJK Ideograph Extension H"
-fi
-cp $srcdir/tests/iscjku.aux tests/xiscjku.aux
-$_bibtexu tests/xiscjku || rc=15
-$DIFF $srcdir/tests/iscjku.bbl tests/xiscjku.bbl || rc=16
-
exit $rc
diff --git a/biblio/bibtex/bibtex-x/tests/bibtexu-iscjk.test b/biblio/bibtex/bibtex-x/tests/bibtexu-iscjk.test
new file mode 100755
index 0000000000..f422dd3dc7
--- /dev/null
+++ b/biblio/bibtex/bibtex-x/tests/bibtexu-iscjk.test
@@ -0,0 +1,57 @@
+#! /bin/sh -vx
+# $Id$
+# Copyright 2022-2023 TANAKA Takuji <ttk@t-lab.opal.ne.jp>
+# You may freely use, modify and/or distribute this file.
+
+BinDir=${BinDir:-.}
+ExeExt=${ExeExt:-}
+_bibtexu=$BinDir/bibtexu$ExeExt
+
+test -d tests || mkdir -p tests
+
+LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE
+#
+TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF
+BSTINPUTS=$srcdir/tests; export BSTINPUTS
+BIBINPUTS=$srcdir/tests; export BIBINPUTS
+
+
+rc=0
+
+## test for is.knj.str$
+
+icuver=1000
+$_bibtexu --version | grep 'ICU version' | sed -E 's/.*ICU version ([1-9][0-9])\..*/\1/' > tests/icuver.txt
+icuver=`cat tests/icuver.txt`
+echo "*** icuver="$icuver
+if [ $icuver -lt 74 ]; then
+ # skip CJK Ideograph Extension I
+ # ex. U+2EBF0
+ uchr='\x{2EBF0}'
+fi
+if [ $icuver -lt 72 ]; then
+ # skip CJK Ideograph Extension H
+ # ex. U+31350
+ uchr=${uchr}'|\x{31350}'
+fi
+if [ $icuver -lt 70 ]; then
+ # skip Kana Extended B
+ # ex. U+1AFF0
+ uchr=${uchr}'|\x{1AFF0}'
+fi
+if [ $icuver -lt 66 ]; then
+ # skip CJK Ideograph Extension G, Small Kana Extension
+ # ex. U+30000, U+1B150
+ uchr=${uchr}'|\x{30000}|\x{1B150}'
+fi
+cp $srcdir/tests/iscjku.aux tests/xiscjku.aux
+$_bibtexu tests/xiscjku || rc=1
+cp $srcdir/tests/iscjku.bbl tests/oiscjku.bbl
+if [ $icuver -le 73 ]; then
+ echo "*** skip checking CJK Ideograph Extension G, H or I"
+ perl -i".bak" -CD -ne "print unless /${uchr}/" tests/oiscjku.bbl
+ perl -i".bak" -CD -ne "print unless /${uchr}/" tests/xiscjku.bbl
+fi
+diff tests/oiscjku.bbl tests/xiscjku.bbl || rc=2
+
+exit $rc
diff --git a/biblio/bibtex/bibtex-x/tests/iscjku.bbl b/biblio/bibtex/bibtex-x/tests/iscjku.bbl
index 1cf81b781b..4bef9f3f23 100644
--- a/biblio/bibtex/bibtex-x/tests/iscjku.bbl
+++ b/biblio/bibtex/bibtex-x/tests/iscjku.bbl
@@ -54,6 +54,7 @@
\item 一二三四漆捌玖拾: 1 1 hz:1 kn:0 hg:0 bp:0 misc:0
\item 𰀀𰀁𰀂𰀃𰀄𰀅𰀆𰀇: 1 1 hz:1 kn:0 hg:0 bp:0 misc:0
\item 𪜀𪜁𪜂𪜃𪜄𪜅𪜆𪜇: 1 1 hz:1 kn:0 hg:0 bp:0 misc:0
+\item 𮯰𮯱𮯲𮯳𮯴𮯵𮯶𮯷: 1 1 hz:1 kn:0 hg:0 bp:0 misc:0
\item 𱍐𱍑𱍒𱍓𱍔𱍕𱍖𱍗: 1 1 hz:1 kn:0 hg:0 bp:0 misc:0
\item 㐂㒵㓛㞍㟢㐆㐬㐮㔫㚑㐧: 1 1 hz:1 kn:0 hg:0 bp:0 misc:0
\item ⺐⺒⺓⺔⺖⺗⺘⺙⻭⻯⻲: 2048 2048 hz:0 kn:0 hg:0 bp:0
diff --git a/biblio/bibtex/bibtex-x/tests/testiscjku.bib b/biblio/bibtex/bibtex-x/tests/testiscjku.bib
index 34c9df07a2..a0c47dd990 100644
--- a/biblio/bibtex/bibtex-x/tests/testiscjku.bib
+++ b/biblio/bibtex/bibtex-x/tests/testiscjku.bib
@@ -23,6 +23,7 @@
@Type{cjk-ideograph-ExtC-1000, field = {𪜀𪜁𪜂𪜃𪜄𪜅𪜆𪜇}, }
@Type{cjk-ideograph-ExtG-1000, field = {𰀀𰀁𰀂𰀃𰀄𰀅𰀆𰀇}, }
@Type{cjk-ideograph-ExtH-1000, field = {𱍐𱍑𱍒𱍓𱍔𱍕𱍖𱍗}, }
+@Type{cjk-ideograph-ExtI-1000, field = {𮯰𮯱𮯲𮯳𮯴𮯵𮯶𮯷}, }
@Type{hangul-1000, field = {가나다라마한글텍}, }
diff --git a/biblio/bibtex/bibtex-x/version.h b/biblio/bibtex/bibtex-x/version.h
index 17084ce89b..47ab4b4e93 100644
--- a/biblio/bibtex/bibtex-x/version.h
+++ b/biblio/bibtex/bibtex-x/version.h
@@ -89,7 +89,7 @@
*/
#ifndef __VERSION_H__
# define __VERSION_H__ 1
-# define PACKAGE_DATE "(15 jul 2023)"
+# define PACKAGE_DATE "(16 dec 2023)"
# define EXT_VERSION PACKAGE_VERSION
# define VERSION PACKAGE_VERSION " " PACKAGE_DATE
#endif /* __VERSION_H__ */
diff --git a/biblio/ctan-bibdata/ctan.bib b/biblio/ctan-bibdata/ctan.bib
index 9496ad48cb..25fa6a593d 100644
--- a/biblio/ctan-bibdata/ctan.bib
+++ b/biblio/ctan-bibdata/ctan.bib
@@ -1,7 +1,7 @@
%% bib file of all CTAN packages
%% (C) Herbert Voß
%%
-%% created at 15-12-2023, 02:00:03
+%% created at 16-12-2023, 02:00:04
%%
%% This file is provided under the terms of the LPPL v1.3 or
@@ -34713,8 +34713,8 @@
title = {The \texttt{iran-bibtex} package},
subtitle = {A bibliography style for BibTeX based on the “Iran Manual of Style”},
author = {Farshad Rasuli},
- date = {2023-12-13},
- version = {0.1.0},
+ date = {2023-12-15},
+ version = {0.2.0},
license = {lppl1.3c},
mirror = {https://mirror.ctan.org/biblio/bibtex/contrib/iran-bibtex},
url = {https://ctan.org/pkg/iran-bibtex},
@@ -37138,8 +37138,8 @@
title = {The \texttt{l3build} package},
subtitle = {A testing and building system for (La)TeX},
author = {{The LaTeX Project Team}},
- date = {2023-12-13},
- version = {-2},
+ date = {2023-12-15},
+ version = {},
license = {lppl1.3c},
mirror = {https://mirror.ctan.org/macros/latex/contrib/l3build},
url = {https://ctan.org/pkg/l3build},
@@ -48537,8 +48537,8 @@
title = {The \texttt{NewComputerModern} package},
subtitle = {Computer Modern fonts including matching non-latin alphabets},
author = {Antonis Tsolomitis},
- date = {2023-12-12},
- version = {5.01},
+ date = {2023-12-15},
+ version = {5.02},
license = {gfl},
mirror = {https://mirror.ctan.org/fonts/newcomputermodern},
url = {https://ctan.org/pkg/newcomputermodern},
@@ -50309,8 +50309,8 @@
title = {The \texttt{oldstandard} package},
subtitle = {OldStandard fonts with \LaTeX{} support},
author = {Alexey Kryukov and Nikola Lečić and Robert Alessi and Bob Tennent},
- date = {2023-05-17},
- version = {2.6},
+ date = {2023-12-15},
+ version = {2.7},
license = {ofl,lppl,gpl},
mirror = {https://mirror.ctan.org/fonts/oldstandard},
url = {https://ctan.org/pkg/oldstandard},
@@ -59503,6 +59503,17 @@
url = {https://ctan.org/pkg/resphilosophica},
}
+@manual{ctan-responsive,
+ title = {The \texttt{responsive} package},
+ subtitle = {Responsive design methods for \LaTeX{}},
+ author = {Michal Hoftich},
+ date = {2023-12-15},
+ version = {0.1},
+ license = {lppl1.3},
+ mirror = {https://mirror.ctan.org/macros/latex/contrib/responsive},
+ url = {https://ctan.org/pkg/responsive},
+}
+
@manual{ctan-rest-api,
title = {The \texttt{rest-api} package},
subtitle = {Describing a rest api},
@@ -63191,8 +63202,8 @@
title = {The \texttt{simpleicons} package},
subtitle = {Simple Icons for \LaTeX{}},
author = {Inesh Bose},
- date = {2023-12-08},
- version = {10.1.0},
+ date = {2023-12-15},
+ version = {10.2.0},
license = {cc-by-1},
mirror = {https://mirror.ctan.org/fonts/simpleicons},
url = {https://ctan.org/pkg/simpleicons},
@@ -71239,8 +71250,8 @@
title = {The \texttt{tkz-elements} package},
subtitle = {A Lua library for drawing Euclidean geometry with TikZ or tkz-euclide},
author = {Alain Matthes},
- date = {2023-12-08},
- version = {1.50c},
+ date = {2023-12-15},
+ version = {1.60c},
license = {lppl1.3},
mirror = {https://mirror.ctan.org/macros/latex/contrib/tkz/tkz-elements},
url = {https://ctan.org/pkg/tkz-elements},
@@ -73847,8 +73858,8 @@
title = {The \texttt{UnBTeX} package},
subtitle = {A class for theses at University of Brasilia (UnB)},
author = {Henrique Cezar Ferreira},
- date = {2023-11-27},
- version = {1.4.1},
+ date = {2023-12-15},
+ version = {1.4.2},
license = {lppl1.3},
mirror = {https://mirror.ctan.org/macros/latex/contrib/unbtex},
url = {https://ctan.org/pkg/unbtex},