10 Sep
2012
10 Sep
'12
4:26 a.m.
On Sun, 9 Sep 2012, Troy Henderson wrote:
When I create animations using MetaPost, I typically do something like
for n=1 upto N: beginfig(n); <some code> endfig; endfor;
and a sequence of figures are created. How can I do this in ConTeXt using \startMPpage ... \stopMPpage?
(untested) \dorecurse{10} {\startMPpage label(btex On step \recurselevel etex, origin); \stopMPpage} (There is also \dostepwiserecurse if you need more control). Aditya