summaryrefslogtreecommitdiff
path: root/macros/luatex/latex
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2023-02-12 03:01:46 +0000
committerNorbert Preining <norbert@preining.info>2023-02-12 03:01:46 +0000
commitf76939750d63d6088b9bdeac794ce3fdf33d1269 (patch)
tree0cd0d327b53fe3a657722ae4188983b8b100468d /macros/luatex/latex
parent73abb311c03e955ad9f7b7464390a5722b20b915 (diff)
CTAN sync 202302120301
Diffstat (limited to 'macros/luatex/latex')
-rw-r--r--macros/luatex/latex/lualinalg/lualinalg.pdfbin345798 -> 345750 bytes
-rw-r--r--macros/luatex/latex/lualinalg/lualinalg.sty6
-rw-r--r--macros/luatex/latex/lualinalg/lualinalg_complex.lua (renamed from macros/luatex/latex/lualinalg/luacomplex.lua)2
3 files changed, 4 insertions, 4 deletions
diff --git a/macros/luatex/latex/lualinalg/lualinalg.pdf b/macros/luatex/latex/lualinalg/lualinalg.pdf
index bdc2769722..39ee5f64cf 100644
--- a/macros/luatex/latex/lualinalg/lualinalg.pdf
+++ b/macros/luatex/latex/lualinalg/lualinalg.pdf
Binary files differ
diff --git a/macros/luatex/latex/lualinalg/lualinalg.sty b/macros/luatex/latex/lualinalg/lualinalg.sty
index 53fe7fd688..2f42e52713 100644
--- a/macros/luatex/latex/lualinalg/lualinalg.sty
+++ b/macros/luatex/latex/lualinalg/lualinalg.sty
@@ -1,17 +1,17 @@
% The lualinalg package
% Authors: Chetan Shirore and Ajit Kumar
-% version 1.0
+% version 1.1, Date=11-Feb-2023
% Licensed under LaTeX Project Public License v1.3c or later. The complete license text is available at http://www.latex-project.org/lppl.txt.
-\ProvidesPackage{lualinalg}[1.0]
+\ProvidesPackage{lualinalg}[1.1]
\RequirePackage{xkeyval}
\RequirePackage{amsmath}
\RequirePackage{luamaths}
\RequirePackage{luacode}
\begin{luacode*}
-local complex = require "luacomplex"
+local complex = require "lualinalg_complex"
-- matrices part
matrices = {}
diff --git a/macros/luatex/latex/lualinalg/luacomplex.lua b/macros/luatex/latex/lualinalg/lualinalg_complex.lua
index b817ce66b6..9f355e53b1 100644
--- a/macros/luatex/latex/lualinalg/luacomplex.lua
+++ b/macros/luatex/latex/lualinalg/lualinalg_complex.lua
@@ -1,5 +1,5 @@
---Version=1.0, Date=31-Jan-2023
+--Version=1.1, Date=10-Feb-2023
-- provides module for complex numbers
--Contains a modified version of the file complex.lua. It is availalbe on the link https://github.com/davidm/lua-matrix/blob/master/lua/matrix.lua. This is licensed under the same terms as Lua itself. This license allows to freely copy, modify and distribute the file for any purpose and without any restrictions.