24 Dec
2024
24 Dec
'24
12:54 p.m.
For some reason there is a difference between placing the opening \HL before the \dorecurse and include a closing \HL in the loop, versus placing the opening \HL it in the loop and appending the closing \HL outside the \dorecurse. Is this the reason to use the new \expandedrepeat instead? .Floris 8<--- \starttext \starttabulate[|l|] % this does not work \dorecurse{5}{ \HL \NC b \AR } \HL \stoptabulate \starttabulate[|l|] % this works \HL \dorecurse{5}{ \NC a \AR \HL } \stoptabulate \starttabulate[|l|] % this works \HL \NC c \AR \HL \NC c \AR \HL \NC c \AR \HL \NC c \AR \HL \NC c \AR \HL \stoptabulate \starttabulate[|l|] % this works \expandedrepeat 5 { \HL \NC d \AR } \HL \stoptabulate \stoptext --->8