Hi all,
Is there a ConTeXt equivalent to LaTeX \settowidth{}, or better still
some macro I can do things like
\setupsomething[
...
width={\widthof{\bf sometext\emspace}},
...]
Cheers,
Robin
\def\widthof#1%
{\bgroup
\setbox\scratchbox\hbox{#1}%
\the\wd\scratchbox%
\egroup}
\starttext
\getrawparameters
[robin]
[width=\widthof{Robin Kirkham}]
\robinwidth
\stoptext
Wolfgang