[NTG-context] Size of the font (Metapost + xtable)

2019-09-23 Thread Fabrice Couvreur
Hello,
I can not change the font size of my figures in the table.
Thank you
Fabrice


 \usecolors[xwi]
\startbuffer[myfigure]
  \dontleavehmode
  \startMPcode
defaultfont := "texgyrepagella-regular*default" ;
defaultscale :=0.8 ;
numeric alpha ; alpha = 60 ;
path circle ;
circle = fullcircle scaled 1.4cm ;
draw circle withcolor blue ;
drawarrow  0.9cm * dir 25 {dir 90}
   .. 0.9cm * dir 45 {dir (90+alpha)}
withcolor \MPcolor{darkred} ;
drawdot origin withpen pencircle scaled 2pt ;
drawdot  0.7cm*dir 0 withpen pencircle scaled 2pt ;
label.llft(btex \m{O} etex,origin) ;
label.rt(btex \m{A} etex,0.7cm*dir 0) ;
  \stopMPcode
\stopbuffer
\starttext
 \startlinecorrection[blank]
  \startmidaligned
\startxtable[align={middle,lohi},width=2.25cm]
  \startxrow
\startxcell
  [background=color,backgroundcolor=paleturquoise]
  Angle en degré
\stopxcell
\startxcell
  180
\stopxcell
\startxcell
  360
\stopxcell
\startxcell
  90
\stopxcell
\startxcell
  45
\stopxcell
\startxcell
  60
\stopxcell
\startxcell
  210
\stopxcell
  \stopxrow
  \startxrow
\startxcell
  [background=color,backgroundcolor=paleturquoise]
  Position de \m{M}
\stopxcell
\startxcell
  \dontleavehmode
  \startMPcode
defaultfont := "texgyrepagella-regular*default" ;
defaultscale :=0.8 ;
numeric alpha ; alpha = 60 ;
path circle ;
circle = fullcircle scaled 1.4cm ;
draw circle withcolor blue ;
drawarrow  0.9cm * dir 25 {dir 90}
   .. 0.9cm * dir 45 {dir (90+alpha)}
withcolor \MPcolor{darkred} ;
drawdot origin withpen pencircle scaled 2pt ;
drawdot  0.7cm*dir 0 withpen pencircle scaled 2pt ;
drawdot  0.7cm*dir 180 withpen pencircle scaled 2pt ;
label.llft(btex \m{O} etex,origin) ;
label.rt(btex \m{A} etex,0.7cm*dir 0) ;
label.lft(btex \m{M} etex,0.7cm*dir 180) ;
  \stopMPcode
\stopxcell
\startxcell
  \getbuffer[myfigure]
\stopxcell
\startxcell
  \getbuffer[myfigure]
\stopxcell
\startxcell
  \getbuffer[myfigure]
\stopxcell
\startxcell
  \getbuffer[myfigure]
\stopxcell
\startxcell
  \getbuffer[myfigure]
\stopxcell
  \stopxrow
  \startxrow
\startxcell
  [background=color,backgroundcolor=paleturquoise]
  Longueur \m{L} en hm
\stopxcell
\startxcell
  \m{\pi \times 1}
\stopxcell
\startxcell
  \unknown
\stopxcell
\startxcell
  \unknown
\stopxcell
\startxcell
  \unknown
\stopxcell
\startxcell
  \unknown
\stopxcell
\startxcell
  \unknown
\stopxcell
  \stopxrow
\stopxtable
  \stopmidaligned
\stoplinecorrection
\stoptext
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Size of the font (Metapost + xtable)

2019-09-23 Thread Thomas A. Schmitz



On 9/23/19 4:12 PM, Fabrice Couvreur wrote:

Hello,
I can not change the font size of my figures in the table.
Thank you
Fabrice



Does changing

\usecolors [xwi]

to

\usecolors [ema]

help?

All best

Thomas
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Size of the font (Metapost + xtable)

2019-09-23 Thread Wolfgang Schuster

Fabrice Couvreur schrieb am 23.09.2019 um 16:12:

Hello,
I can not change the font size of my figures in the table.


\startxcell[foregroundstyle={\switchtobodyfont[...]}]

or

\setupxtable[smallbodyfont][foregroundstyle={\switchtobodyfont[...]}]

\startxcell[smallbodyfont]

Wolfgang

___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Size of the font (Metapost + xtable)

2019-09-23 Thread Wolfgang Schuster

Fabrice Couvreur schrieb am 23.09.2019 um 23:31:

Hi Wolfgang,
As I understand it, the following instructions have no effect on the 
figures


defaultfont := "texgyrepagella-regular*default" ;
defaultscale :=0.8 ;


You change the font because you typeset your labels in math mode.

label.llft(btex \m{O} etex,origin) ;

Wolfgang

___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___