Hans Hagen wrote:
Maarten Sneep wrote:
I'd like to use the calligraphic typeface from the lucida set, but using the following setup, I don't get 'em.
\setupbodyfontenvironment[default][em=italic] \usetypescript[serif,sans,mono][hanging][pure] \setupalign[hanging]
\setupbodyfont[lbr,9pt]
\starttext {\cg This should be in the Lucida Calligraphic typeface --- but it isn't} \stoptext
Any ideas? I'm running a current ConTeXt.
in type-pre.tex, you need to add the calligraphy entry in:
\starttypescript [lbr]
\usetypescript [serif,sans,mono,math,calligraphy,handwriting] .... \usetypescript [serif,sans,mono,math,calligraphy,handwriting] ....
....
after that the following will work (no need for a new format):
\setupbodyfont[lbr] \rm test \ss test \tt test \hw test \cg test
Thanks Hans, Adding the calligraphy entry, works for me.