Hi Pablo,
You are correct, the LuaMetaTeX file is still expecting the old "isbn" as the name, whereas the MKIV running zint directly requires the new one with "isbnx".
Not sure with which zint version the "isbn" got changed to "isbnx".
- ["code 128"] = 20, ["isbn"] = 69, ["han xin code"] = 116, |
+ ["code 128"] = 20, ["isbnx"] = 69, ["han xin code"] = 116,
- if lower(code) == "isbn" then |
+ if lower(code) == "isbnx" then
This way the sample works in the same way for both MKIV and LMTX:
zint-test.tex
---
\usemodule[zint]
\starttext
\barcode[alternative=isbnx, text=9783865419026, width=4cm]
\stoptext
---
context zint-test.tex
context --luatex zint-test.tex
Adam