[NTG-context] Alphabet & color

2020-07-15 Thread Marcus Vinicius Mesquita
Dear list

I need to typeset a book for kids wich contains texts where each letter is
assigned a fixed color, for example:

A - - > red;
B - - > blue;
...
Z - - > green.

What would be the best way to do this? TIA.

Marcus Vinicius
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] how to with \margindata

2020-07-15 Thread Hans van der Meer
I didn't miss that argument, of course, my actual code was:
\margindata[outer][hoffset=\marginoffset]

dr. Hans van der Meer


> On 15 Jul 2020, at 22:10, Wolfgang Schuster 
>  wrote:
> 
> Hans van der Meer schrieb am 15.07.2020 um 21:48:
>> Using the following:
>> \margindata{some macro expansions}
> 
> You're missing the first mandatory argument, e.g. \margindata[inright]{...}.
> 
>> I know that \margindata is typeset at a later moment than its place in the 
>> code suggests. The problem is that macro expansions inside the {}'s are 
>> expanded twice. This interferes badly with the things I want to happen.
> 
> No, the content is stored in a box and placed later.
> 
> \definecounter[test]
> 
> \starttext
> 
> \dorecurse{10}
>  {\inleft{\incrementedcounter[test]}Line \recurselevel\par}
> 
> \stoptext
> 
>> Tracing what happens, I conclude that the result of the first expansion is 
>> lost and is not carried into the actual placement of the marginnote.
>> The question this is: how to solve this problem?
> 
> Provide a working minimal example.
> 
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Text around a figure

2020-07-15 Thread Otared Kavian
Hi Fabrice,

I think what Wolfgang suggests is something like the following:

\useMPlibrary[dum]
\definecolor[fondpaille][c=0,m=0,y=0.2,k=0]
\definetextbackground[fondpaille]
[background=color,
backgroundcolor=fondpaille,
frame=off,
location=always]

\starttext

\starttextbackground[fondpaille]
\startplacefigure[number=no,location=right]
\externalfigure[dummy]
\stopplacefigure
\startitemize[n]
\dorecurse{3}{\startitem \input ward \stopitem}
\stopitemize
\stoptextbackground

\stoptext

Best regards: Otared K.

> On 15 Jul 2020, at 22:13, Wolfgang Schuster 
>  wrote:
> 
> Fabrice Couvreur schrieb am 15.07.2020 um 19:54:
>> Hello,
>> I always encounter difficulties with the placement of figures in such a way 
>> that the text envelops the figure.
>> Thank you.
>> Fabrice
>> \useMPlibrary[dum]
>> \definecolor[fondpaille][c=0,m=0,y=0.2,k=0]
>> \starttext
>> \startframedtext[width=max,background=color,backgroundcolor=fondpaille]
>>  \placefloat[][right,none]{}
>>{\externalfigure[dummy]}
>>  \startitemize[n]
>>\dorecurse{3}{\startitem \input ward \stopitem}
>>  \stopitemize
>>\stopframedtext
>>\stoptext
> 
> 
> Side floats don't work in frames, use the textbackground environment to add a 
> colored box behind the text.
> 
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Text around a figure

2020-07-15 Thread Wolfgang Schuster

Fabrice Couvreur schrieb am 15.07.2020 um 19:54:

Hello,
I always encounter difficulties with the placement of figures in such a 
way that the text envelops the figure.

Thank you.
Fabrice

\useMPlibrary[dum]
\definecolor[fondpaille][c=0,m=0,y=0.2,k=0]

\starttext

\startframedtext[width=max,background=color,backgroundcolor=fondpaille]
      \placefloat[][right,none]{}
        {\externalfigure[dummy]}
      \startitemize[n]
        \dorecurse{3}{\startitem \input ward \stopitem}
      \stopitemize
    \stopframedtext

    \stoptext



Side floats don't work in frames, use the textbackground environment to 
add a colored box behind the text.


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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] how to with \margindata

2020-07-15 Thread Wolfgang Schuster

Hans van der Meer schrieb am 15.07.2020 um 21:48:

Using the following:

\margindata{some macro expansions}


You're missing the first mandatory argument, e.g. \margindata[inright]{...}.

I know that \margindata is typeset at a later moment than its place in 
the code suggests. The problem is that macro expansions inside the {}'s 
are expanded twice. This interferes badly with the things I want to happen.


No, the content is stored in a box and placed later.

\definecounter[test]

\starttext

\dorecurse{10}
  {\inleft{\incrementedcounter[test]}Line \recurselevel\par}

\stoptext

Tracing what happens, I conclude that the result of the first expansion 
is lost and is not carried into the actual placement of the marginnote.


The question this is: how to solve this problem?


Provide a working minimal example.

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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] how to with \margindata

2020-07-15 Thread Hans van der Meer
Using the following:

\margindata{some macro expansions}

I know that \margindata is typeset at a later moment than its place in the code 
suggests. The problem is that macro expansions inside the {}'s are expanded 
twice. This interferes badly with the things I want to happen.

Tracing what happens, I conclude that the result of the first expansion is lost 
and is not carried into the actual placement of the marginnote.

The question this is: how to solve this problem?

dr. Hans van der Meer


___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Combining colors with matrices

2020-07-15 Thread Otared Kavian
Hi David,

Regarding matrices, below is an example. You can choose the names pmatrix, etc 
as you wish. There is even a module which allows you to compute the product of 
two matrices, etc (with \usemodule[m-matrix], see m-matrix.mkiv).

%% defining matrix with parentheses
\definemathmatrix[pmatrix]
[matrix:parentheses]
[simplecommand=pmatrix]

%% defining matrix with brackets
\definemathmatrix[bmatrix]
[matrix:brackets]
[simplecommand=bmatrix]
 
%% defining determinant with bars
\definemathmatrix[determinant]
[matrix:bars]
[simplecommand=thedeterminant]

\starttext
Let $A$ be the $3\times 3$ matrix defined by
\startformula
A := 
\startpmatrix
\NC 11 \NC 12 \NC 13 \NR
\NC 21 \NC 22 \NC 23 \NR
\NC 31 \NC 32 \NC 33 \NR
\stoppmatrix .
\stopformula
This matrix can also be dfined by the Matlab structure of a matrix:
\startformula
A := \pmatrix{11,12,13 ; 21, 22, 23 ; 31, 32, 33}
\stopformula
Compute the value of
\startformula
\alpha := \thedeterminant{11,12,13 ; 21, 22, 23 ; 31, 32, 33} = {\rm det}(A).
\stopformula
\stoptext

Best regards: Otared K.

> On 15 Jul 2020, at 15:38, David Eric Cox  wrote:
> 
> Can anyone direct me to either traditional ConTeXt math documentation on how 
> to produce matrices or tell me how to show a variable in bold red in MathML?  
> I am producing pdf files exclusively.
> 
> 
> Sent with ProtonMail Secure Email.
> 
> ___
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] Combining colors with matrices

2020-07-15 Thread David Eric Cox
Never mind. That was stupid of me. I can do it by containing a generalized 
fraction within \( and \).

Still getting used to thinking on multiple levels (TeX,ConTeXt,MathML, etc.)

Sent with [ProtonMail](https://protonmail.com) Secure Email.

‐‐‐ Original Message ‐‐‐
On Wednesday, July 15, 2020 9:38 AM, David Eric Cox 
 wrote:

> Can anyone direct me to either traditional ConTeXt math documentation on how 
> to produce matrices or tell me how to show a variable in bold redin MathML? I 
> am producing pdf files exclusively.
>
> Sent with [ProtonMail](https://protonmail.com) Secure Email.___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] Text around a figure

2020-07-15 Thread Fabrice Couvreur
Hello,
I always encounter difficulties with the placement of figures in such a way
that the text envelops the figure.
Thank you.
Fabrice

\useMPlibrary[dum]
\definecolor[fondpaille][c=0,m=0,y=0.2,k=0]

\starttext

\startframedtext[width=max,background=color,backgroundcolor=fondpaille]
 \placefloat[][right,none]{}
   {\externalfigure[dummy]}
 \startitemize[n]
   \dorecurse{3}{\startitem \input ward \stopitem}
 \stopitemize
   \stopframedtext

   \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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] Combining colors with matrices

2020-07-15 Thread David Eric Cox
Can anyone direct me to either traditional ConTeXt math documentation on how to 
produce matrices or tell me how to show a variable in bold redin MathML? I am 
producing pdf files exclusively.

Sent with [ProtonMail](https://protonmail.com) Secure Email.___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] embolden font in LMTX

2020-07-15 Thread Pablo Rodriguez
Dear list,

I have the following sample:

\definefontfamily
[mainface]
[rm]
[TeX Gyre Pagella]
[it={style:regular, features:{default, slanted}},
 bi={style:regular, features:{default, boldened, slanted}},
 bf={style:regular, features:{default, boldened}}]

\setupbodyfont[mainface]

\starttext
\input{zapf}\\
{\it \input{zapf}}\\
{\bf \input{zapf}}\\
{\bi \input{zapf}}\\
\stoptext

I’m afraid that LMTX (current latest 2020.07.13 23:53) cannot deal with
the boldened feature. MkIV (from 2020.01.30 14:13) works just fine.

Am I missing something or have I hit a bug?

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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] french translation of ConTeXt interface - progress (v3)

2020-07-15 Thread Henning Hraban Ramm

> Am 15.07.2020 um 14:28 schrieb Hans Hagen :
> 
> On 7/15/2020 2:14 PM, Henning Hraban Ramm wrote:
>>> Am 15.07.2020 um 10:31 schrieb Hans Hagen :
>>> you can leave the commands for last ... in an french user interface the 
>>> english commands will work ok, but keys/values/elements have to be 
>>> translated
>> Are the other interfaces (Dutch, German, Czech...) actually still working?
> are germans still lipsyncing movies (or even foreign news), translating 
> computerbooks in german (large secxtions in bookshops), translating thrillers 
> and novels ... or has that all stopped working

I don’t understand the comparison.

It’s a difference if I can enjoy movies or books, if I can understand textbooks 
or manuals in a foreign language or if and why I’d use translated programming 
or markup commands.

For me, lip syncing can make movies confusing, since the sound doesn’t match 
the lip movements – I prefer original language with subtitles (for German and 
English, that is).

> anyway, it is supposed to work and whenever kids have to use context doing it 
> in dutch is more fun (one just learns them the handfull of commands they need)

I’m not against these interfaces, but without translated documentation a 
translated interface doesn’t make a lot of sense (to me).

E.g. LilyPond docs have several translations (it’s a huge effort!), but besides 
note names there’s no interface translation. (I’m glad I can use c d e notes, 
while others prefer do re mi etc. I could even use German h/b instead of b/bes, 
but I got used to the Dutch default – for input only; in my songbooks I stick 
to German chord names.)

Translated documentation is important, it lowers the threshold for many users. 
That’s why I’m writing my book in German. But once you grow out of the basics, 
you need to be able to find your way in manuals and wiki or ask questions here, 
where everything’s in English.

With our small developer and user base we struggle enough with keeping 
documentation current. – I’m very happy with and thankful for the big effort 
that goes into the wiki at the moment! – Maybe we (i.e. Taco, Paul etc.) can 
extend the automatisms so far, that we also can document the translated 
interfaces that way, even if the manually added content would stay in English.

I never heard that kids would use ConTeXt at all, but perhaps I just missed you 
talking about it.


Sorry, Garulfo, didn’t want to hijack your thread.


Best regards, Hraban
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] white-space after section-head in columns

2020-07-15 Thread Lukas/ConTeXt
Hello Peter,

playing with "grid" option within \setuplayout and \setuphead might help - see:


\setuplayout[grid=no]
\setuphead[section][grid=no]

\starttext
  \startsection[title=Space is ok here]
\input tufte
  \stopsection

  \blank

  \startcolumns[n=2]
\startsection[title=Too much white-space here]
  \input tufte
\stopsection

\setuphead[section]%[after=\vskip-2ex]

\startsection[title=Space is ok here with workaround]
  \input tufte
\stopsection
  \stopcolumns
\stoptext


Best regards,

Lukas


-- Původní e-mail --

Od: Peter Münster 

Komu: ConTeXt users 

Datum: 15. 7. 2020 14:57:26

Předmět: [NTG-context] white-space after section-head in columns

Hi,

What is the right way please to get normal white-space after a section in
columns, i.e. not too much?

Example, that shows the problem:

--8<---cut here---start->8---
\starttext
\startsection[title=Space is ok here]
  \input tufte
\stopsection
\startcolumns[n=2]
\startsection[title=Too much white-space here]
  \input tufte
\stopsection
\setuphead[section][after=\vskip-2ex]
\startsection[title=Space is ok here with workaround]
  \input tufte
\stopsection
\stopcolumns
\stoptext
--8<---cut here---end--->8---

TIA,
--
   Peter
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___\setuplayout[grid=no]
\setuphead[section][grid=no]

\starttext
  \startsection[title=Space is ok here]
\input tufte
  \stopsection

  \blank

  \startcolumns[n=2]
\startsection[title=Too much white-space here]
  \input tufte
\stopsection

\setuphead[section]%[after=\vskip-2ex]

\startsection[title=Space is ok here with workaround]
  \input tufte
\stopsection
  \stopcolumns
\stoptext


t3.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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] white-space after section-head in columns

2020-07-15 Thread Wolfgang Schuster

Peter Münster schrieb am 15.07.2020 um 14:55:

Hi,

What is the right way please to get normal white-space after a section in
columns, i.e. not too much?

Example, that shows the problem:

--8<---cut here---start->8---
\starttext
\startsection[title=Space is ok here]
   \input tufte
\stopsection
\startcolumns[n=2]
\startsection[title=Too much white-space here]
   \input tufte
\stopsection
\setuphead[section][after=\vskip-2ex]
\startsection[title=Space is ok here with workaround]
   \input tufte
\stopsection
\stopcolumns
\stoptext
--8<---cut here---end--->8---


https://www.mail-archive.com/ntg-context@ntg.nl/msg89563.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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] white-space after section-head in columns

2020-07-15 Thread Peter Münster
Hi,

What is the right way please to get normal white-space after a section in
columns, i.e. not too much?

Example, that shows the problem:

--8<---cut here---start->8---
\starttext
\startsection[title=Space is ok here]
  \input tufte
\stopsection
\startcolumns[n=2]
\startsection[title=Too much white-space here]
  \input tufte
\stopsection
\setuphead[section][after=\vskip-2ex]
\startsection[title=Space is ok here with workaround]
  \input tufte
\stopsection
\stopcolumns
\stoptext
--8<---cut here---end--->8---

TIA,
-- 
   Peter
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] french translation of ConTeXt interface - progress (v3)

2020-07-15 Thread Hans Hagen

On 7/15/2020 2:14 PM, Henning Hraban Ramm wrote:



Am 15.07.2020 um 10:31 schrieb Hans Hagen :
you can leave the commands for last ... in an french user interface the english 
commands will work ok, but keys/values/elements have to be translated


Are the other interfaces (Dutch, German, Czech...) actually still working?
are germans still lipsyncing movies (or even foreign news), translating 
computerbooks in german (large secxtions in bookshops), translating 
thrillers and novels ... or has that all stopped working


anyway, it is supposed to work and whenever kids have to use context 
doing it in dutch is more fun (one just learns them the handfull of 
commands they need)


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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] french translation of ConTeXt interface - progress (v3)

2020-07-15 Thread Henning Hraban Ramm

> Am 15.07.2020 um 10:31 schrieb Hans Hagen :
> you can leave the commands for last ... in an french user interface the 
> english commands will work ok, but keys/values/elements have to be translated

Are the other interfaces (Dutch, German, Czech...) actually still working?

AFAIR I tried the German one in the beginning (MkII) but gave up since all the 
documentation is in English, and nobody could help you with anything but 
English and Dutch.

WRT your musings (“What’s in a name“): translated interfaces look funny, and I 
guess they make only sense in a very limited environment. E.g. Marei’s LaTeX3 
system I’m working with uses German commands, but it’s focused on technical 
documentation for one company, and we’re not supposed to use general LaTeX 
commands.

In my German book I’ll only show the English interface, otherwise I’d need to 
write even more...

@Garulfo: Do you have a special use case in mind, or do you do this for fun?

Best, Hraban
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] french translation of ConTeXt interface - progress (v3)

2020-07-15 Thread Hans Hagen

On 7/14/2020 11:39 PM, Garulfo wrote:


Hi,

a "early-alpha-version" of updated setup-fr.pdf
https://wiki.contextgarden.net/File:setup-fr.pdf

with the associated mult-def.lua.
https://wiki.contextgarden.net/File:20_output_mult-def_garulfo.zip

Any feedback will be welcome.

To developers : what priorities, in terms of categories,
would you advise for the translation ?

%-

Progress:

TYPE TOTAL    DONE
commands  3962 943    24%
constants  841 708    84%
elements    26  26   100%
setupstrings   135  57    42% = 100% other are { ( |...
variables 1329 632    48%

   6293    2366    38%
you can leave the commands for last ... in an french user interface the 
english commands will work ok, but keys/values/elements have to be 
translated


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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] context --ctx=s-mod not working?

2020-07-15 Thread Jairo A. del Rio
I still get a corrupted file, almost empty as it seems. However, error
messages are missing, so something weird is happening.

Jairo :)

El mié., 15 de jul. de 2020 a la(s) 03:17, Hans Hagen (j.ha...@xs4all.nl)
escribió:

> On 7/15/2020 9:27 AM, Jairo A. del Rio wrote:
> > Hi list!
> >
> > I've tried context --ctx=s-mod with some files, e.g. t-annotation and I
> > only get corrupted PDF files. Also, when I try with files such as
> > syst-aux.mkiv, I get the following error after a L O T of warnings:
> >
> > \wait
> >
> > tex error   > tex error on line 4554 in file syst-aux.mkiv: ?
>
> looks like you just load the syst-aux files as module here (and you can
> only load these files once)
>
> try
>
> context --extra=module mult-sys.mkiv --autopdf
>
> (it's one of the extra thingies)
>
> 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] context --ctx=s-mod not working?

2020-07-15 Thread Hans Hagen

On 7/15/2020 9:27 AM, Jairo A. del Rio wrote:

Hi list!

I've tried context --ctx=s-mod with some files, e.g. t-annotation and I 
only get corrupted PDF files. Also, when I try with files such as 
syst-aux.mkiv, I get the following error after a L O T of warnings:


\wait

tex error       > tex error on line 4554 in file syst-aux.mkiv: ?


looks like you just load the syst-aux files as module here (and you can 
only load these files once)


try

context --extra=module mult-sys.mkiv --autopdf

(it's one of the extra thingies)

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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] context --ctx=s-mod not working?

2020-07-15 Thread Jairo A. del Rio
Hi list!

I've tried context --ctx=s-mod with some files, e.g. t-annotation and I
only get corrupted PDF files. Also, when I try with files such as
syst-aux.mkiv, I get the following error after a L O T of warnings:

\wait

tex error   > tex error on line 4554 in file syst-aux.mkiv: ?



\wait ->\begingroup \read 16 to \wait
\endgroup
\installsystemnamespace ...??#1\endcsname \writestatus \m!system {duplicate
system namespace '#1'}\wait

\else \global \advance \c_syst_helpers_n_of_names...
l.4554 \installsystemnamespace{extraevery}




Is it a bug or am I missing some additional settings? Thank you very much.

Jairo :)
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___