On 6/23/2021 10:00 PM, Jeong Dal wrote:
Hi,
Is there a way to deliver the value of a variable in MetaFun to ConTeXt. For example, I want to do the following:
\starttext \startMPcode numeric maxCount; % … some code maxCount := 10; \stopMPcode
dorecurse{maxCount} {It is \recurselevel.\par}
\stoptext
Thank you for reading.
\newcount\MyCount \starttext \startMPcode numeric maxCount; maxCount := 10; setglobalmacro("MyMacro",decimal maxCount); setglobalcount("MyCount",maxCount); \stopMPcode \dorecurse{\MyMacro}{It is \recurselevel. }\par \dorecurse{\MyCount}{It is \recurselevel. }\par \stoptext ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl -----------------------------------------------------------------