Hans Hagen schrieb am 26.02.2021 um 18:36:
On 2/26/2021 6:01 PM, Lukas/ConTeXt wrote:
Hello, after I renewed ConTeXt MkIV, I started to get the following warning: " ... luatex warning > nodes: unable to store reference from lua in tex ... (repeated more times) " This happens when I try to typeset a looo...ong table (by \start/\stop-tabulate) over several pages. It used to work OK with a Ctx version several months (or half year) ago. Is there a simple way to overtake the problem? MWE:
---- \starttext \startluacode context[[ \starttabulate[|Tr|] \HL \NC AABBCC \NC\AR \HL[3] ]]
for i = 1, 4000 do context.NC(i) context.NC() context.AR() end
context[[ \HL \stoptabulate ]] \stopluacode \stoptext ---- ... lmtx ... no problem, doing 4K or 40K or ..
MkIV only, there is no output for \HL with too many lines (and the warning is shown). \starttext \starttabulate[|l|] \NC xxx \NC\NR \HL \ntimes{\NC yyy \NC\NR}{4000} \stoptabulate \stoptext Wolfgang