ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Problem to place a label in an environment \startMPcode \stopMPcode
@ 2015-12-31 16:46 Fabrice Couvreur
  2015-12-31 19:09 ` Alan BRASLAU
  0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Couvreur @ 2015-12-31 16:46 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 734 bytes --]

Hello,
The code below works perfectly without the placement of the label, but if I
want to place the label, it no longer works.
Thank you

\definefloat
   [recipe]
   [figure]

\setupfloat
   [recipe]
   [default={right,none}]

\starttext

\switchtobodyfont [pagella, 9pt]

\placerecipe{}{

\startMPcode

pair vert[] ;
n:=6 ; radius=2cm ;
for i=0 upto n :
        vert[i] = radius * dir(360*i/n) ;
endfor ;

draw for i=0 upto n-1: vert[i] -- endfor cycle withcolor blue ;

draw for i=0 upto n-1: vert[i] .. endfor cycle withcolor red ;

draw (0,0)--vert[0] withcolor green ;

draw (0,0)--vert[5] withcolor green ;

draw (0,0) --(vert[0]+vert[5])/2 dashed evenly ;

% label.urt("C",vert[1])  ;


\stopMPcode
}

\input knuth

\stoptext

[-- Attachment #1.2: Type: text/html, Size: 1238 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Problem to place a label in an environment \startMPcode \stopMPcode
  2015-12-31 16:46 Problem to place a label in an environment \startMPcode \stopMPcode Fabrice Couvreur
@ 2015-12-31 19:09 ` Alan BRASLAU
  2016-01-02 16:31   ` Wolfgang Schuster
  0 siblings, 1 reply; 3+ messages in thread
From: Alan BRASLAU @ 2015-12-31 19:09 UTC (permalink / raw)
  To: Fabrice Couvreur; +Cc: mailing list for ConTeXt users

Works fine here.

Alan


P.S. I simplified your code slightly:


\definefloat
   [recipe]
   [figure]
   [default={right,none}]

\setupbodyfont [pagella,9pt]

\starttext

\startplacerecipe

  \startMPcode

  pair vert[] ;
  numeric n ; n := 5 ;
  numeric radius ; radius := 2cm ;

  for i=0 upto n : 
        vert[i] = radius * dir(360*i/(n+1)) ;
  endfor ;

  draw for i=0 upto n: vert[i] -- endfor cycle withcolor blue ; 

  draw for i=0 upto n: vert[i] .. endfor cycle withcolor red ; 

  draw origin--vert0 withcolor green ;

  draw origin--vert5 withcolor green ;

  draw origin--.5[vert0,vert5] dashed evenly ;

  label.urt("C",vert1) ;
  %alternately:
  %draw textext.urt("C") shifted vert1 ;

  \stopMPcode  

\stopplacerecipe

\input knuth

\stoptext




On Thu, 31 Dec 2015 17:46:35 +0100
Fabrice Couvreur <fabrice1.couvreur@gmail.com> wrote:

> Hello,
> The code below works perfectly without the placement of the label,
> but if I want to place the label, it no longer works.
> Thank you
> 
> \definefloat
>    [recipe]
>    [figure]
> 
> \setupfloat
>    [recipe]
>    [default={right,none}]
> 
> \starttext
> 
> \switchtobodyfont [pagella, 9pt]
> 
> \placerecipe{}{
> 
> \startMPcode
> 
> pair vert[] ;
> n:=6 ; radius=2cm ;
> for i=0 upto n :
>         vert[i] = radius * dir(360*i/n) ;
> endfor ;
> 
> draw for i=0 upto n-1: vert[i] -- endfor cycle withcolor blue ;
> 
> draw for i=0 upto n-1: vert[i] .. endfor cycle withcolor red ;
> 
> draw (0,0)--vert[0] withcolor green ;
> 
> draw (0,0)--vert[5] withcolor green ;
> 
> draw (0,0) --(vert[0]+vert[5])/2 dashed evenly ;
> 
> % label.urt("C",vert[1])  ;
> 
> 
> \stopMPcode
> }
> 
> \input knuth
> 
> \stoptext



-- 
Alan Braslau
CEA DSM-IRAMIS-SPEC
CNRS UMR 3680
Orme des Merisiers
91191 Gif-sur-Yvette cedex FRANCE
tel: +33 1 69 08 73 15
fax: +33 1 69 08 87 86
mailto:alan.braslau@cea.fr
___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Problem to place a label in an environment \startMPcode \stopMPcode
  2015-12-31 19:09 ` Alan BRASLAU
@ 2016-01-02 16:31   ` Wolfgang Schuster
  0 siblings, 0 replies; 3+ messages in thread
From: Wolfgang Schuster @ 2016-01-02 16:31 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 505 bytes --]

> Alan BRASLAU <mailto:alan.braslau@cea.fr>
> 31. Dezember 2015 um 20:09
> Works fine here.
>
> Alan
>
>
> P.S. I simplified your code slightly:
>
>
> \definefloat
> [recipe]
> [figure]
> [default={right,none}]
You can’t do this because the second argument is used the names of the 
\placelistof… and \completelistof… command.


The correct definition for the new float is:

     \definefloat[recipe][recipes][figure]
     \setupfloat[recipe][default={right,none}]

Wolfgang

[-- Attachment #1.2: Type: text/html, Size: 1529 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-01-02 16:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-31 16:46 Problem to place a label in an environment \startMPcode \stopMPcode Fabrice Couvreur
2015-12-31 19:09 ` Alan BRASLAU
2016-01-02 16:31   ` Wolfgang Schuster

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).