textext positioning

From Wiki
Revision as of 10:08, 20 December 2020 by Garulfo (talk | contribs)
Jump to navigation Jump to search


\starttext

\setupMPinstance
  [metafun]
  [textstyle={\definedfont[name:dejavusans*default at 25pt]\ignorespaces}]
  
\startMPpage

draw (0cm,0cm)--(20cm,0cm)--(20cm,20cm)--(0cm,20cm)--cycle
  withpen pencircle
  scaled 0.5mm
  withcolor red;

%------------------------------------------------------------------------------

pair PA ;  PA := (10cm,16cm) ;
  
draw textext.urt("\ruledhbox{URT Aujourd'hui}") shifted PA;
draw textext.ulft("\ruledhbox{ULFT Aujourd'hui}") shifted PA;

draw textext.llft("\ruledhbox{LLFT Aujourd'hui}") shifted PA;
draw textext.lrt("\ruledhbox{LRT Aujourd'hui}")  shifted PA;

draw PA withpen pencircle scaled 1.5mm  withcolor red;

%------------------------------------------------------------------------------

pair PB ;  PB := PA shifted (0cm,-2cm) ;
  
draw textext.drt("\ruledhbox{DRT Aujourd'hui}") shifted PB;
draw textext.dlft("\ruledhbox{DLFT Aujourd'hui}") shifted PB;

draw PB withpen pencircle scaled 1.5mm  withcolor red;

%------------------------------------------------------------------------------

pair PC ;  PC := PB shifted (0cm,-2cm) ;
  
draw textext.d("\ruledhbox{D Aujourd'hui}") shifted PC;


draw PC withpen pencircle scaled 1.5mm  withcolor red;

%------------------------------------------------------------------------------

pair PD ;  PD := PC shifted (0cm,-2cm) ;
  
draw textext.bot("\ruledhbox{BOT Aujourd'hui}")  shifted PD;
draw textext.top("\ruledhbox{TOP Aujourd'hui}") shifted PD;

draw PD withpen pencircle scaled 1.5mm  withcolor red;

%------------------------------------------------------------------------------

pair PE ;  PE := PD shifted (0cm,-2cm) ;
  
draw textext.lft("\ruledhbox{LFT Aujourd'hui}") shifted PE;
draw textext.rt("\ruledhbox{RT Aujourd'hui}") shifted PE;

draw PE withpen pencircle scaled 1.5mm  withcolor red;

%------------------------------------------------------------------------------

pair PF ;  PF := PE shifted (0cm,-2cm) ;
  
draw textext("\ruledhbox{Aujourd'hui}") shifted PF;

draw PF withpen pencircle scaled 1.5mm  withcolor red;

%------------------------------------------------------------------------------

pair PG ;  PG := PF shifted (0cm,-2cm) ;
  
draw textext.origin("\ruledhbox{ORIGIN Aujourd'hui}") shifted PG;

draw PG withpen pencircle scaled 1.5mm  withcolor red;

%------------------------------------------------------------------------------

pair PH ;  PH := PG shifted (0cm,-2cm) ;
  
draw textext.raw("\ruledhbox{RAW Aujourd'hui}") shifted PH;

draw PH withpen pencircle scaled 1.5mm  withcolor red;

%------------------------------------------------------------------------------

\stopMPpage

\stoptext