ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Command definitions in ma-cb-en.tex
@ 2015-11-29 13:41 Jan U. Hasecke
  2015-11-30 19:00 ` Aditya Mahajan
  0 siblings, 1 reply; 5+ messages in thread
From: Jan U. Hasecke @ 2015-11-29 13:41 UTC (permalink / raw)
  To: ntg-context

Hi all,

this is a stupid question, I fear: In "ConTeXt Mark IV an excursion" in
appendix A I see many command definitions. I browsed the sources of this
document but could not find the point where these list is defined.

I know that in setup-en.pdf there is an even longer list, but I could
not find the source of this document.

Can anyone shed some light on this mechanism?

TIA
juh
___________________________________________________________________________________
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] 5+ messages in thread

* Re: Command definitions in ma-cb-en.tex
  2015-11-29 13:41 Command definitions in ma-cb-en.tex Jan U. Hasecke
@ 2015-11-30 19:00 ` Aditya Mahajan
  2015-12-01 14:48   ` Jan U. Hasecke
  0 siblings, 1 reply; 5+ messages in thread
From: Aditya Mahajan @ 2015-11-30 19:00 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Sun, 29 Nov 2015, Jan U. Hasecke wrote:

> Hi all,
>
> this is a stupid question, I fear: In "ConTeXt Mark IV an excursion" in
> appendix A I see many command definitions. I browsed the sources of this
> document but could not find the point where these list is defined.
>
> I know that in setup-en.pdf there is an even longer list, but I could
> not find the source of this document.
>
> Can anyone shed some light on this mechanism?

This is implemented using XML interface. See, for example, cont-en.xml in 
$TEXMF/texmf-context/tex/context/base/interface

The schema is documented at http://wiki.contextgarden.net/Interface.rnc

The XML to TEX mappings are defined in x-set-11.mkiv. The basic usage is

\usemodule[int-load] % synonym to x-set-11
\loadsetups[....] % name of xml file

\starttext

\showsetup{command-name}

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

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

* Re: Command definitions in ma-cb-en.tex
  2015-11-30 19:00 ` Aditya Mahajan
@ 2015-12-01 14:48   ` Jan U. Hasecke
  2015-12-01 15:17     ` Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Jan U. Hasecke @ 2015-12-01 14:48 UTC (permalink / raw)
  To: ntg-context

Am 30.11.2015 um 20:00 schrieb Aditya Mahajan:
> On Sun, 29 Nov 2015, Jan U. Hasecke wrote:
> 
>> Hi all,
>>
>> this is a stupid question, I fear: In "ConTeXt Mark IV an excursion" in
>> appendix A I see many command definitions. I browsed the sources of this
>> document but could not find the point where these list is defined.
>>
>> I know that in setup-en.pdf there is an even longer list, but I could
>> not find the source of this document.
>>
>> Can anyone shed some light on this mechanism?
> 
> This is implemented using XML interface. See, for example, cont-en.xml
> in $TEXMF/texmf-context/tex/context/base/interface
> 
> The schema is documented at http://wiki.contextgarden.net/Interface.rnc
> 
> The XML to TEX mappings are defined in x-set-11.mkiv. The basic usage is
> 
> \usemodule[int-load] % synonym to x-set-11
> \loadsetups[....] % name of xml file
> 
> \starttext
> 
> \showsetup{command-name}
> 
> \stoptext

Thanks a lot. I managed to use this in a sample documentation. But I
still have no clue how it is invoked in the cited document.

Anyway, nice feature.

juh

___________________________________________________________________________________
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] 5+ messages in thread

* Re: Command definitions in ma-cb-en.tex
  2015-12-01 14:48   ` Jan U. Hasecke
@ 2015-12-01 15:17     ` Wolfgang Schuster
  2015-12-01 15:26       ` Jan U. Hasecke
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Schuster @ 2015-12-01 15:17 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

> Jan U. Hasecke <mailto:juh+ntg-context@mailbox.org>
> 1. Dezember 2015 um 15:48
>
> Thanks a lot. I managed to use this in a sample documentation. But I
> still have no clue how it is invoked in the cited document.
ma-cb-style.tex on line 550:

             \startmixedcolumns[documentcolumns]
                 \placelistofsorts[texcommand]
             \stopmixedcolumns

Wolfgang

[-- Attachment #1.2: Type: text/html, Size: 1434 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] 5+ messages in thread

* Re: Command definitions in ma-cb-en.tex
  2015-12-01 15:17     ` Wolfgang Schuster
@ 2015-12-01 15:26       ` Jan U. Hasecke
  0 siblings, 0 replies; 5+ messages in thread
From: Jan U. Hasecke @ 2015-12-01 15:26 UTC (permalink / raw)
  To: ntg-context

Am 01.12.2015 um 16:17 schrieb Wolfgang Schuster:
>> Jan U. Hasecke <mailto:juh+ntg-context@mailbox.org>
>> 1. Dezember 2015 um 15:48
>>
>> Thanks a lot. I managed to use this in a sample documentation. But I
>> still have no clue how it is invoked in the cited document.
> ma-cb-style.tex on line 550:
> 
>             \startmixedcolumns[documentcolumns]
>                 \placelistofsorts[texcommand]
>             \stopmixedcolumns

Thank you, Wolfgang. :-)

juh
___________________________________________________________________________________
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] 5+ messages in thread

end of thread, other threads:[~2015-12-01 15:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-29 13:41 Command definitions in ma-cb-en.tex Jan U. Hasecke
2015-11-30 19:00 ` Aditya Mahajan
2015-12-01 14:48   ` Jan U. Hasecke
2015-12-01 15:17     ` Wolfgang Schuster
2015-12-01 15:26       ` Jan U. Hasecke

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).