Re: [NTG-context] vectors instead of embedding fonts

2016-08-15 Thread Hans Hagen

On 8/15/2016 10:43 PM, Pablo Rodriguez wrote:

On 08/15/2016 10:29 PM, Henri Menke wrote:

Hi Pablo,

you might be interested in the following question on TeX Stack Exchange:

  https://tex.stackexchange.com/questions/11307

Philipp Gesang gave an answer covering ConTeXt:

  https://tex.stackexchange.com/a/127902/10995

Cheers, Henri


Hi Henri,

many thanks for your reply.

I really need the vectors to create an SVG cover from the PDF cover.

Nothing to do with obfuscation at all.


\startMPpage
draw outlinetext.d
("\ConTeXt\ is awesome!")
(withpen pencircle scaled 1/10) ;
\stopMPpage

but anyway, you can use mutool / mudraw to create an svg from a pdf

Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-
___
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] vectors instead of embedding fonts

2016-08-15 Thread Hans Hagen

On 8/15/2016 6:53 PM, Pablo Rodriguez wrote:

Dear list,

is there any way to have vectors instead of fonts embedded in the
following document?

\startext
\ConTeXt\ is awesome!
\stoptext

Many thanks for your help,


for what purpose?


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
   tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-
___
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] vectors instead of embedding fonts

2016-08-15 Thread Pablo Rodriguez
On 08/15/2016 10:29 PM, Henri Menke wrote:
> Hi Pablo,
> 
> you might be interested in the following question on TeX Stack Exchange:
> 
>   https://tex.stackexchange.com/questions/11307
> 
> Philipp Gesang gave an answer covering ConTeXt:
> 
>   https://tex.stackexchange.com/a/127902/10995
> 
> Cheers, Henri

Hi Henri,

many thanks for your reply.

I really need the vectors to create an SVG cover from the PDF cover.

Nothing to do with obfuscation at all.

Cheer,

Pablo


> On 08/15/2016 06:53 PM, Pablo Rodriguez wrote:
>> Dear list,
>>
>> is there any way to have vectors instead of fonts embedded in the
>> following document?
>>
>> \startext
>> \ConTeXt\ is awesome!
>> \stoptext
>>
>> Many thanks for your help,
>>
>> Pablo

-- 
http://www.ousia.tk
___
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] vectors instead of embedding fonts

2016-08-15 Thread Henri Menke
Hi Pablo,

you might be interested in the following question on TeX Stack Exchange:

  https://tex.stackexchange.com/questions/11307

Philipp Gesang gave an answer covering ConTeXt:

  https://tex.stackexchange.com/a/127902/10995

Cheers, Henri

On 08/15/2016 06:53 PM, Pablo Rodriguez wrote:
> Dear list,
> 
> is there any way to have vectors instead of fonts embedded in the
> following document?
> 
> \startext
> \ConTeXt\ is awesome!
> \stoptext
> 
> Many thanks for your help,
> 
> Pablo
> 

___
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] placelocalfootnotes breaks center alignment

2016-08-15 Thread Aditya Mahajan

On Mon, 15 Aug 2016, Wolfgang Schuster wrote:


 Henri Menke 
 29. Juli 2016 um 12:48
 Dear list,

 sometimes, one wants to place footnotes in a table which then appear right
 below the last row. Therefore ConTeXt ships the clever
 `\start...\stoplocalfootnotes` mechanism. Unfortunately, putting
 `\placelocalfootnotes` outside of the table breaks the centering of the
 table itself. For illustration please see the example below. How can I
 have my table centered while the footnotes are either left-aligned with
 respect to the left border of the table or left-aligned with respect to
 the page (whatever is easier)?

 Cheers, Henri

 ---

 \starttext

 \startplacetable
 [title={some table}]
 \startlocalfootnotes
 \startTABLE
 \NC Content\footnote{Footnote} \NC\NR
 \stopTABLE
 \placelocalfootnotes % commenting out unbreaks alignment
 \stoplocalfootnotes
 \stopplacetable

 \stoptext

You can use the pairedbox mechanism to place the notes under the table.

\definepairedbox
  [footnote]
  [width=\textwidth,
   align=middle]


Or, if you don't want to set the width to textwidth, simply wrap 
everything in a vbox (I use framedtext for convenience)


\starttext
\startplacetable[title={some table}]
  \startframedtext[width=fit,align=middle,frame=off]
  \startlocalfootnotes
\startTABLE
  \NC Content\footnote{Footnote} \NC\NR
\stopTABLE

\placelocalfootnotes
  \stoplocalfootnotes
\stopframedtext
\stopplacetable
\stoptext

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

[NTG-context] vectors instead of embedding fonts

2016-08-15 Thread Pablo Rodriguez
Dear list,

is there any way to have vectors instead of fonts embedded in the
following document?

\startext
\ConTeXt\ is awesome!
\stoptext

Many thanks for your help,

Pablo
-- 
http://www.ousia.tk
___
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] Missing hyphentation in natural tables (was: French hyphenation issue in tablepaired boxes)

2016-08-15 Thread Jean-Pierre Delange

Thanks Wolfgang ! It works well : clear and (apparently) simple.

JP


Le 15/08/2016 à 16:46, Wolfgang Schuster a écrit :

Jean-Pierre Delange 
15. August 2016 um 15:05
Dear List,
In order to verify the mechanism with a French document, I have set 
the code sample given by Wolfgang for paired boxes with align 
footnotes through French language commands. And I have substitute 2 
French texts to 'Content'  (after removing previous \input tufte and 
\input ward), and fill the tables titles with my own. All is fine, 
except hyphenation which seems to be an issue here  : see in the 
first text the word 'automatiquement'.
The missing hyphentation has nothing to do with floats, footnotes or 
paired boxes but a result of the default alignment setting for natural 
tables. To change the default value for the alignment you can use the 
align key for \setupTABLE.


\mainlanguage[fr]

\setcharacterspacing[frenchpunctuation]

\starttext

\setupTABLE[start][align=normal]
%\setupTABLE[start][align=flushleft]
%\setupTABLE[start][align={flushleft,broad}]

\bTABLE
\bTR
\bTD
« Dans la société présente, où le jeu de la spécialisation
s’est outré automatiquement, les fonctions intellectuelles
et les fonctions manuelles ne sont presque jamais attribuées
aux mêmes ouvriers ; les ouvriers intellectuels délaissent
presque tout le travail des mains ; les ouvriers manuels
délaissent presque tout travail de l’esprit, presque tout
exercice de la raison. »
\eTD
\eTR
\eTABLE

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


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

[NTG-context] Missing hyphentation in natural tables (was: French hyphenation issue in tablepaired boxes)

2016-08-15 Thread Wolfgang Schuster

Jean-Pierre Delange 
15. August 2016 um 15:05
Dear List,
In order to verify the mechanism with a French document, I have set 
the code sample given by Wolfgang for paired boxes with align 
footnotes through French language commands. And I have substitute 2 
French texts to 'Content'  (after removing previous \input tufte and 
\input ward), and fill the tables titles with my own. All is fine, 
except hyphenation which seems to be an issue here  : see in the first 
text the word 'automatiquement'.
The missing hyphentation has nothing to do with floats, footnotes or 
paired boxes but a result of the default alignment setting for natural 
tables. To change the default value for the alignment you can use the 
align key for \setupTABLE.


\mainlanguage[fr]

\setcharacterspacing[frenchpunctuation]

\starttext

\setupTABLE[start][align=normal]
%\setupTABLE[start][align=flushleft]
%\setupTABLE[start][align={flushleft,broad}]

\bTABLE
\bTR
\bTD
« Dans la société présente, où le jeu de la spécialisation
s’est outré automatiquement, les fonctions intellectuelles
et les fonctions manuelles ne sont presque jamais attribuées
aux mêmes ouvriers ; les ouvriers intellectuels délaissent
presque tout le travail des mains ; les ouvriers manuels
délaissent presque tout travail de l’esprit, presque tout
exercice de la raison. »
\eTD
\eTR
\eTABLE

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

Re: [NTG-context] French hyphenation issue in tablepaired boxes

2016-08-15 Thread Jean-Pierre Delange

Dear List,
In order to verify the mechanism with a French document, I have set the 
code sample given by Wolfgang for paired boxes with align footnotes 
through French language commands. And I have substitute 2 French texts 
to 'Content'  (after removing previous \input tufte and \input ward), 
and fill the tables titles with my own. All is fine, except hyphenation 
which seems to be an issue here  : see in the first text the word 
'automatiquement'.


I have added the following commands :
\mainlanguage[fr]

\setcharacterspacing[frenchpunctuation]

\defineparagraphs[n=1, align={hz,hanging}]

\setupalign[hyphenated]

Thanks for your help.
JP

See the sample below :

\mainlanguage[fr]

\setcharacterspacing[frenchpunctuation]


\definepairedbox

[footnote]

[width=\textwidth,

align=middle]

\defineparagraphs[n=1, align={hz,hanging}]

\starttext

\setupalign[hyphenated]


\startplacetable[title={Manuels et Intellectuels}]

\startlocalfootnotes

\startplacepairedbox[footnote]

\startcontent

\startTABLE

\NC « Dans la société présente, où le jeu de la spécialisation s’est 
outré automatiquement, les fonctions intellectuelles et les fonctions 
manuelles ne sont presque jamais attribuées aux mêmes ouvriers ; les 
ouvriers intellectuels délaissent presque tout le travail des mains ; 
les ouvriers manuels délaissent presque tout travail de l’esprit, 
presque tout exercice de la raison. » \footnote{Charles Péguy. Ed. 
Gallimard, coll. La Pléiade, {\em Œuvres en prose complètes}, tome I, 
pp. 1390.} \NC\NR


\stopTABLE

\stopcontent

\startcaption

\placelocalfootnotes

\stopcaption

\stopplacepairedbox

\stoplocalfootnotes

\stopplacetable


\startplacetable[title={La crise de l'enseignement}]

\startlocalfootnotes

\placepairedbox[footnote]

{\startTABLE

\NC « La crise de l'enseignement n'est pas une crise de l'enseignement ; 
il n'y a pas de crise de l'enseignement ; il n'y a jamais eu de crise de 
l'enseignement ; les crises de l'enseignement ne sont pas des crises de 
l'enseignement ; elles sont des crises de vie ; elles dénoncent, elles 
représentent des crises de vie et sont des crises de vie elles-mêmes ; 
elles sont des crises de vie partielles, éminentes, qui annoncent et 
accusent des crises de la vie générales ; ou si l’on veut les crises de 
vie générales, les crises de vie sociales s'aggravent, se ramassent, 
culminent en crises de l'enseignement, qui semblent particulières ou 
partielles, mais qui en réalité sont totales, parce qu'elles 
représentent le tout de la vie sociale. »\footnote{Ed. Gallimard, coll. 
La Pléiade, {\em Œuvres en prose complètes}, tome I, pp. 1390.} \NC\NR


\stopTABLE}

{\placelocalfootnotes}

\stoplocalfootnotes

\stopplacetable


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

Re: [NTG-context] placelocalfootnotes breaks center alignment

2016-08-15 Thread Wolfgang Schuster

Jean-Pierre Delange 
15. August 2016 um 13:19

Dear Wolfgang,

Thanks a lot ! In order to verify the mechanism with a French 
document, I have set your code sample with French commands and replace 
'Content' by 2 texts of around 15 lines each (after removing \input 
tufte and \input ward previously given), and fill the tables titles 
with words of my own. All is fine, except hyphenation which doesn't 
appear here.


\mainlanguage[fr]

\setcharacterspacing[frenchpunctuation]

\defineparagraphs[n=1, align={hz,hanging}]

\setupalign[hyphenated]



You may try with this text (in place of 'Content') :
« Dans la société présente, où le jeu de la spécialisation s’est outré 
automatiquement, les fonctions intellectuelles et les fonctions 
manuelles ne sont presque jamais attribuées aux mêmes ouvriers. »

1. Create a working minimal example, not only code snippets.

2. Start a new thread [1] for your question.

[1] 
http://www.shlomifish.org/philosophy/computers/netiquette/email/start-new-thread.html


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] placelocalfootnotes breaks center alignment

2016-08-15 Thread Jean-Pierre Delange

Dear Wolfgang,

Thanks a lot ! In order to verify the mechanism with a French document, 
I have set your code sample with French commands and replace 'Content' 
by 2 texts of around 15 lines each (after removing \input tufte and 
\input ward previously given), and fill the tables titles with words of 
my own. All is fine, except hyphenation which doesn't appear here.


\mainlanguage[fr]

\setcharacterspacing[frenchpunctuation]

\defineparagraphs[n=1, align={hz,hanging}]

\setupalign[hyphenated]



You may try with this text (in place of 'Content') :
« Dans la société présente, où le jeu de la spécialisation s’est outré 
automatiquement, les fonctions intellectuelles et les fonctions 
manuelles ne sont presque jamais attribuées aux mêmes ouvriers. »


Thanks for your help.
JP

\definepairedbox
  [footnote]
  [width=\textwidth,
   align=middle]

\starttext

\startplacetable[title={some table}]
\startlocalfootnotes
\startplacepairedbox[footnote]
\startcontent
\startTABLE
\NC Content\footnote{Footnote} \NC\NR
\stopTABLE
\stopcontent
\startcaption
\placelocalfootnotes
\stopcaption
\stopplacepairedbox
\stoplocalfootnotes
\stopplacetable

\startplacetable[title={some table}]
\startlocalfootnotes
\placepairedbox[footnote]
{\startTABLE
 \NC Content\footnote{Footnote} \NC\NR
 \stopTABLE}
{\placelocalfootnotes}
\stoplocalfootnotes
\stopplacetable

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

[NTG-context] Vertical space lost (\placefigure[right] before enumeration)

2016-08-15 Thread Mikael P. Sundqvist
Hi!

If I put a float in the right before an enumeration, the
"before={\blank[line]}" seem to be lost. Please have a look at the
example file below (pdf attached), where

* Example 1 is set as I want it,
* Example 2 is not (I would like to have a blank line before it, and
* Example 3 is set as I want it, but I look for a solution where I do
not have to inser the \blank[line] manually.
* Example 4 is certainly not what I want.

Any idea on how I can do to get the result of Example 3 automatically?

/Mikael

\defineenumeration[example][
text=Example,
alternative=serried,
width=fit,
before={\blank[line]},
after={\blank[line]},
]

\starttext
\input knuth

\startexample
\input tufte
\stopexample

\page[yes]

\input knuth

\placefigure[right,high]{}{\blackrule[width=3cm,height=4cm]}
\startexample
\input tufte
\stopexample

\page[yes]

\input knuth

\blank[line]
\placefigure[right,high]{}{\blackrule[width=3cm,height=4cm]}
\startexample
\input tufte
\stopexample

\page[yes]

\input knuth

\startexample
\placefigure[right,high]{}{\blackrule[width=3cm,height=4cm]}
\input tufte
\stopexample

\stoptext


ctx-example.pdf
Description: Adobe PDF document
___
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] placelocalfootnotes breaks center alignment

2016-08-15 Thread Wolfgang Schuster

Henri Menke 
29. Juli 2016 um 12:48
Dear list,

sometimes, one wants to place footnotes in a table which then appear 
right below the last row. Therefore ConTeXt ships the clever 
`\start...\stoplocalfootnotes` mechanism. Unfortunately, putting 
`\placelocalfootnotes` outside of the table breaks the centering of 
the table itself. For illustration please see the example below. How 
can I have my table centered while the footnotes are either 
left-aligned with respect to the left border of the table or 
left-aligned with respect to the page (whatever is easier)?


Cheers, Henri

---

\starttext

\startplacetable
[title={some table}]
\startlocalfootnotes
\startTABLE
\NC Content\footnote{Footnote} \NC\NR
\stopTABLE
\placelocalfootnotes % commenting out unbreaks alignment
\stoplocalfootnotes
\stopplacetable

\stoptext

You can use the pairedbox mechanism to place the notes under the table.

\definepairedbox
  [footnote]
  [width=\textwidth,
   align=middle]

\starttext

\startplacetable[title={some table}]
\startlocalfootnotes
\startplacepairedbox[footnote]
\startcontent
\startTABLE
\NC Content\footnote{Footnote} \NC\NR
\stopTABLE
\stopcontent
\startcaption
\placelocalfootnotes
\stopcaption
\stopplacepairedbox
\stoplocalfootnotes
\stopplacetable

\startplacetable[title={some table}]
\startlocalfootnotes
\placepairedbox[footnote]
{\startTABLE
 \NC Content\footnote{Footnote} \NC\NR
 \stopTABLE}
{\placelocalfootnotes}
\stoplocalfootnotes
\stopplacetable

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

Re: [NTG-context] Interlining in a TwoColumns set

2016-08-15 Thread Pablo Rodriguez
On 08/15/2016 10:39 AM, Jean-Pierre Delange wrote:
> Hi Pablo and Wolfgang,
> 
> Many thanks ! The issue concerning a logo image in a TwoColumns document
> is resolved. It was only a matter of file format. I thought (I don't
> know why), that ConTeXt use SVG format. I've converted all my *.svg file
> in PNG and it works fine. Thank you very much for your help.

Hi Jean-Pierre,

well, I think “ConTeXt supports SVG as image format” is a true
statement. It doesn’t support it natively and it needs an external tool
to convert SVG files. But this is a different question.

BTW, if your SVG files contain vectors, I think it is better to convert
them to PDF. Otherwise, vectors will be lost in PNG files.

Just in case it might help,


Pablo
-- 
http://www.ousia.tk
___
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] Interlining in a TwoColumns set

2016-08-15 Thread Jean-Pierre Delange

Hi Pablo and Wolfgang,

Many thanks ! The issue concerning a logo image in a TwoColumns document 
is resolved. It was only a matter of file format. I thought (I don't 
know why), that ConTeXt use SVG format. I've converted all my *.svg file 
in PNG and it works fine. Thank you very much for your help.


JP


Le 14/08/2016 à 17:55, Wolfgang Schuster a écrit :

Jean-Pierre Delange 
14. August 2016 um 16:13
About the image on the top right of the TwoColumns doc : it works 
with mill.png image (but not with spider). I guess the 'Logo.svg' is 
too heavy (or something like that).
LuaTeX can only use images in the formats PDF, PNG, JPG, JP2 or JBIG2 
. Graphics which are provided in another format have to be converted 
in one mentioned before, for some formats (e.g. SVG) ConTeXt is able 
to convert them on the fly but you need the required programs (e.g. 
Inkscape for the conversion of SVG to PDF) on your system.


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
___