28 Sep
2014
28 Sep
'14
6:09 p.m.
This example from m-pstricks.mkiv doesn't work, there is a missing file extension in m-pstricks.mkii: line 46 (macro \doifelse)is: \loadpstrickscolors{colo-rgb}} should be \loadpstrickscolors{colo-rgb.mkii}} otherwise it searches for colo-rgb.mkiv which doesn't exist. I do not understand why it searches for mkiv because in the background runs context mkii (started by by m-pstricks.lua). If I use the extension the follwing example works fine with current minimal: \usemodule[pstricks] \usePSTRICKSmodule[pst-barcode] \starttext \startPSTRICKS \pspicture(-4mm,-1mm)(38mm,26mm) \psbarcode[linecolor=red]{9781860742712}{includetext guardwhitespace}{ean13}% \endpspicture \stopPSTRICKS \stoptext Herbert