Re: [NTG-context] mkii definition of \setupnotedefinition

2014-12-13 Thread Gerben Wierda
Adding to myself, I tried to increase the font of my endnotes with

\setupnotedefinition[endnote][indenting={yes,medium},bodyfont=11pt]

But whatever size I put in, the result remains the same.

On 13 Dec 2014, at 11:31, Gerben Wierda gerben.wie...@rna.nl wrote:

 While both mkii and mkiv are formally in operation, it seems ConTeXtgarden 
 has moved to mkiv (more or less). So, as a mkii user, where do I find the 
 documentation of \setupnotedefinition?
 
 G
 ___
 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
 ___

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

Re: [NTG-context] mkii definition of \setupnotedefinition

2014-12-13 Thread Wolfgang Schuster

 Am 13.12.2014 um 11:41 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 Adding to myself, I tried to increase the font of my endnotes with
 
 \setupnotedefinition[endnote][indenting={yes,medium},bodyfont=11pt]
 
 But whatever size I put in, the result remains the same.

Notes use the description/enumeration code and accepts the same arguments.

\setupnotedefinition[endnote][style={\switchtobodyfont[11pt]}]

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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___

Re: [NTG-context] mkii definition of \setupnotedefinition

2014-12-13 Thread Gerben Wierda
Thanks.

Is it possible to influence the font size of the endnote number too, preferably 
separate in the text and at the location where the endnotes are printed?

G

On 13 Dec 2014, at 12:02, Wolfgang Schuster schuster.wolfg...@gmail.com wrote:

 
 Am 13.12.2014 um 11:41 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 Adding to myself, I tried to increase the font of my endnotes with
 
 \setupnotedefinition[endnote][indenting={yes,medium},bodyfont=11pt]
 
 But whatever size I put in, the result remains the same.
 
 Notes use the description/enumeration code and accepts the same arguments.
 
 \setupnotedefinition[endnote][style={\switchtobodyfont[11pt]}]
 
 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://tex.aanhet.net
 archive  : http://foundry.supelec.fr/projects/contextrev/
 wiki : http://contextgarden.net
 ___

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

Re: [NTG-context] mkii definition of \setupnotedefinition

2014-12-13 Thread Wolfgang Schuster

 Am 13.12.2014 um 12:25 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 Thanks.
 
 Is it possible to influence the font size of the endnote number too, 
 preferably separate in the text and at the location where the endnotes are 
 printed?

\setupcolors[state=start]

\setupnotedefinition
  [endnote]
  [style={\switchtobodyfont[10pt]},
   headstyle=\ttb,
   headcolor=blue]

\setupnote
  [endnote]
  [%textcommand=,
   %numbercommand=,
   textstyle=\ssb,
   textcolor=red]

\starttext

Ward.\endnote{\input ward }

\placenotes[endnote]

\stoptext

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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___