When using metapost in ConTeXt, I would like to have all my labels in sans by default. Which option can configure it and which environment should I use to pass it (MPinclusions?)
I am aware of this post but did not fully understand how to implement it (I am compiling with lmtx at home and mkiv at school).
\setuppapersize [S3]
\setupbodyfont[sans]
\startreusableMPgraphic{Label}
label ("Typeset in \METAFUN\ ",origin);
% this is what I do know, making the code less readable
% and error-prone, waisting also my time…
% label ("{\ss Typeset in \METAFUN\ }",origin);
\stopreusableMPgraphic
\starttext
Typeset by \CONTEXT\
\blank[big]
\reuseMPgraphic{Label}
\stoptext



\definefontsynonym[MetafunDefault][Sans*default at 11pt]– sztruks Aug 28 '21 at 15:06