Am 21.05.2015 um 22:14 schrieb Pablo Rodriguez
: On 05/21/2015 09:40 PM, david.boerschlein@juno.com wrote:
I have the following:
\setupbodyfontenvironment[default][em=italic,x=9.0pt,xx=8.0pt,a=12.0pt,b=14.0pt,c=16.0pt,d=18.0pt,e=24.0pt,small=8.0pt]
Hi David,
the numeric values for the options are scaling factors.
These are relative sizes to the value set in \setupbodyfont (or 12pt by default, when none is set).
So dimension units doesn’t make any sense in these options.
Your command should read:
\setupbodyfontenvironment [default] [em=italic, x=0.9, xx=0.8, b=1.4, c=1.6, d=1.8, e=2.4, small=0.8]
Removed "a" size, since its value isn’t different from the default.
When you change the values for a certain font size you can use dimensions. \setupbodyfontenvironment [10pt] [x=8.0pt, a=20.0pt] \setupbodyfont[10pt] \starttext text {\tfa text} {\tfx text} \stoptext Wolfgang