summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-07-19 20:48:47 +0000
committerKarl Berry <karl@freefriends.org>2023-07-19 20:48:47 +0000
commit7a50a82a6c74db25c3c266ac25bd9e3e881cf84b (patch)
tree761dd38fd5cee5df74e36e8a7ee22fa10411096d /Master
parent5e4a00666cc9b79bfdab9a1077053159000a35ec (diff)
luaplot (19jul23)
git-svn-id: svn://tug.org/texlive/trunk@67673 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf-dist/doc/lualatex/luaplot/luaplot.pdfbin147391 -> 147449 bytes
-rw-r--r--Master/texmf-dist/tex/lualatex/luaplot/luaplot.sty9
2 files changed, 5 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/lualatex/luaplot/luaplot.pdf b/Master/texmf-dist/doc/lualatex/luaplot/luaplot.pdf
index 22172587231..1378aa6e29c 100644
--- a/Master/texmf-dist/doc/lualatex/luaplot/luaplot.pdf
+++ b/Master/texmf-dist/doc/lualatex/luaplot/luaplot.pdf
Binary files differ
diff --git a/Master/texmf-dist/tex/lualatex/luaplot/luaplot.sty b/Master/texmf-dist/tex/lualatex/luaplot/luaplot.sty
index f9f5377c90c..b148c5bdfe9 100644
--- a/Master/texmf-dist/tex/lualatex/luaplot/luaplot.sty
+++ b/Master/texmf-dist/tex/lualatex/luaplot/luaplot.sty
@@ -1,9 +1,9 @@
% luaplot package
-% version 1.2
+% version 1.3
% Licensed under LaTeX Project Public License v1.3c or later. The complete license text is available at http://www.latex-project.org/lppl.txt.
%Authors: Chetan Shirore and Ajit Kumar
-\ProvidesPackage{luaplot}[1.2]
+\ProvidesPackage{luaplot}[1.3]
\RequirePackage{xkeyval}
\RequirePackage{luacode}
\RequirePackage{tikz}
@@ -110,13 +110,14 @@ for subexp in string.gmatch(\luastring{#2}, '([^,]+)') do
end
local colortbl={}
local countclr = 1
-for funcolor in string.gmatch(\mop@eight, '([^,]+)') do
+for funcolor in string.gmatch(\mop@eight, '[^,]*') do
+ if funcolor == nil or funcolor=='' then funcolor='black' end
colortbl[countclr] = funcolor
countclr = countclr + 1
end
local plotstytbl={}
local countplotsty = 1
-for funplotsty in string.gmatch(\mop@nine, '([^,]+)') do
+for funplotsty in string.gmatch(\mop@nine, '[^,]*') do
plotstytbl[countplotsty] = funplotsty
countplotsty = countplotsty + 1
end