Where is error in my code?
![](https://secure.gravatar.com/avatar/595556d6f7150801c48cce314a1f617d.jpg?s=120&d=mm&r=g)
I edit 1 file metafun with follow: \startMPenvironment \usetypescript[times][texnansi] \switchtobodyfont[times,10pt] \stopMPenvironment \startMPpage fill fullcircle scaled 2cm withcolor red; label(\sometxt{Cn},origin) withcolor white; \stopMPpage After run context and recieve 1 picture with a space very very long at left my picture. Please help me find my error! Thanks
![](https://secure.gravatar.com/avatar/49e63acb01f2ca80efce7eed08310ce8.jpg?s=120&d=mm&r=g)
On 1/28/2015 5:49 AM, Van Dung Tang wrote:
I edit 1 file metafun with follow:
\startMPenvironment \usetypescript[times][texnansi] \switchtobodyfont[times,10pt] \stopMPenvironment \startMPpage fill fullcircle scaled 2cm withcolor red; label(\sometxt{Cn},origin) withcolor white; \stopMPpage
After run context and recieve 1 picture with a space very very long at left my picture.
if you use mkiv you can do just: \switchtobodyfont[times,10pt] \startMPpage fill fullcircle scaled 2cm withcolor red; label(\sometxt{Cn},origin) withcolor white; \stopMPpage if you use mkii, you have to load the fonts first \startMPenvironment[global] because loading can involve all kind of actions that introduce spaces Hans
Please help me find my error! Thanks
___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://tex.aanhet.net archive : http://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________
-- ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
![](https://secure.gravatar.com/avatar/6114858d84b0f40cf715f12237ab67a1.jpg?s=120&d=mm&r=g)
On Wed, Jan 28, 2015 at 5:49 AM, Van Dung Tang
I edit 1 file metafun with follow:
\startMPenvironment \usetypescript[times][texnansi] \switchtobodyfont[times,10pt] \stopMPenvironment \startMPpage fill fullcircle scaled 2cm withcolor red; label(\sometxt{Cn},origin) withcolor white; \stopMPpage
After run context and recieve 1 picture with a space very very long at left my picture.
Please help me find my error!
If you use MkII (texexec document.tex), use the following: \setupcolors[state=start] \usetypescript[times][texnansi] \switchtobodyfont[times,10pt] \starttext \startMPpage fill fullcircle scaled 2cm withcolor red; label(\sometxt{\color[white]{Cn}},origin); \stopMPpage \stoptext There is no need to set the font inside the MP environment when using \sometxt{} (those definitions are causing issues with whitespaces) and you need to set the colour inside the text. If you use MkIV (context document.text), you should use: \switchtobodyfont[times,10pt] \starttext \startMPpage fill fullcircle scaled 2cm withcolor red; label(\sometxt{\color[white]{Cn}},origin); \stopMPpage \stoptext but label(\sometxt{Cn},origin) withcolor white; works in MKIV as well. I strongly suggest you to use MkIV. Mojca
participants (3)
-
Hans Hagen
-
Mojca Miklavec
-
Van Dung Tang