[NTG-context] Display reference number as Roman number

2020-11-24 Thread Rik Kabel

Hello all,

What I thought should be a simple conversion escapes me.

I have a reference (created originally via a label defined by 
\definelabel) that, when referenced as *\in[label]* or 
*\ref[number][label]* displays a number, and that is how I normally use 
it. However, I want to display it in one instance as a Roman numeral. 
*\**Romannumerals{\in[label]}* complains that it is not being fed a number.


How can I display the label number in Roman number format in this one 
instance?


--
Rik

___
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] Error with spaces in Argument of \startproduct

2020-11-24 Thread Jannik Voges

Hello,


as the title suggested, I get an error when using spaces in the argument 
of \startproduct. For example typesetting



\startproduct{foo bar}


\starttext

foo

\stoptext

\stopproduct


results in an error:

tex error   > tex error on line 2 in file ./foo bar.tex: Too many }'s


Best regards

Jannik Voges
___
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] Unexpected underbar behaviour in sections

2020-11-24 Thread Bruce Horrocks


> On 24 Nov 2020, at 22:26, Aditya Mahajan  wrote:
> 
> On Tue, 24 Nov 2020, Bruce Horrocks wrote:
> 
>> The following is giving me a section title with triple underbars instead of 
>> single. 
>> 
>> \definehead [Heading] [section]
>> \setuphead [Heading] [style={\underbar}]
> 
> Change this to:
> 
> \setuphead [Heading] [textcommand={\underbar}, numbercommand=\underbar]
> 

Thanks - that worked nicely.
--
Bruce Horrocks
Hampshire, UK

___
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] Unexpected underbar behaviour in sections

2020-11-24 Thread Aditya Mahajan


On Tue, 24 Nov 2020, Bruce Horrocks wrote:

> The following is giving me a section title with triple underbars instead of 
> single. 
> 
> \definehead [Heading] [section]
> \setuphead [Heading] [style={\underbar}]

Change this to:

\setuphead [Heading] [textcommand={\underbar}, numbercommand=\underbar]

> \starttext
> \Heading{First level section heading}
> \underbar{This is single underlined as expected}
> \stoptext
> 
> (Same with \startHeading .. \stopHeading and for subsections, which is where 
> I first noticed it.)
>
> It looks quite attractive in its own way - and certainly acts as a visual 
> highlight - just not quite what I was expecting. ;-)

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


Re: [NTG-context] Error with spaces in Argument of \startproduct

2020-11-24 Thread Wolfgang Schuster

Jannik Voges schrieb am 24.11.2020 um 22:24:

Hello,

as the title suggested, I get an error when using spaces in the argument 
of \startproduct. For example typesetting


\startproduct{foo bar}


You can have a filename with a space use

\startproduct [foo bar]

but you don't even need the filename when you replace it with *, e.g.

\startproduct *

or

\startproduct [*]

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] startCSV Wiki, Natural Table

2020-11-24 Thread Fabrice L


> Le 24 nov. 2020 à 13:36, Wolfgang Schuster 
>  a écrit :
> 
> Fabrice L schrieb am 24.11.2020 um 19:08:
>>> Le 24 nov. 2020 à 12:52, Wolfgang Schuster 
>>>  a écrit :
>>> 
>>> Fabrice L schrieb am 24.11.2020 um 18:44:
 Hi,
 I was using in the past (MKII) a snippet of code to produce (natural) 
 tables from CSV. I was trying to compile my code with MKIV, but this does 
 not work anymore. As a matter of fact, it doe snot work at all, nor MKII, 
 nor MKIV (probably my error !).
 So I came back to the wiki, where my code came from, and the code below is 
 just a copy for the wiki. It is supposed to make a table with three 
 columns, but there is only one column in the resulting table…  I admit I 
 do not understand the code, but is there is missing \eTR somewhere ?
>>> Use the database module.
>>> 
>>> \usemodule[database]
>>> 
>>> \defineseparatedlist
>>>  [CSV]
>>>  [separator={,},
>>>  before=\bTABLE,
>>>   after=\eTABLE,
>>>   first=\bTR,
>>>last=\eTR,
>>>left=\bTD,
>>>   right=\eTD]
>>> 
>>> \starttext
>>> 
>>> \startCSV
>>> 1,2,3
>>> 3,5,6
>>> 7,8,9
>>> \stopCSV
>>> 
>>> \stoptext
>>> 
>>> Wolfgang
>> Wolfgang, thanks. I have seen the use if the database module on the wiki, 
>> but was trying to do without it, the reason is that my documents are often 
>> shared with colleagues, for which installation of modules is most often very 
>> difficult.
> 
> There is nothing to install because the database module is part of ConTeXt.

I see… wonderfull ! Thanks a lot for the help. 
> 
> Wolfgang

Fabrice.___
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] Fwd: Some ligatures don't work in latest LMTX

2020-11-24 Thread Jairo A. del Rio
-- Forwarded message -
De: Jairo A. del Rio 
Date: mar, 24 de nov. de 2020 a la(s) 14:16
Subject: Re: [NTG-context] Some ligatures don't work in latest LMTX
To: Hans Hagen 


Thank you very much, Hans. Ligatures now work. However, diacritics aren't
properly placed even using "features=arabic" (they appear below letters in
LMTX). ConTeXt MkIV still gives correct output.

Thank you in advance.

Jairo

El mar, 24 de nov. de 2020 a la(s) 12:04, Hans Hagen (j.ha...@xs4all.nl)
escribió:

> On 11/24/2020 8:12 AM, Jairo A. del Rio wrote:
> > |Hi everyone. The following example works fine with MkIV, but fails with
> > latest LMTX.
> > |
> >
> > |To be specific, the lam-alif ligature isn't working. Compile with both
> > to see differences.
> > |
> >
> > |Majalla is a Windows font, so I guess it's available for testing:
> > |
> >
> > |
> > \mainlanguage[arabic] \definefontfeature [arabic]
> > [mode=node,language=dflt,script=arab,
> > init=yes,medi=yes,fina=yes,isol=yes,
> > liga=yes,dlig=yes,rlig=yes,clig=yes,
> > mark=yes,mkmk=yes,kern=yes,curs=yes]
> > \definefontfamily[main][serif][sakkalmajalla][features=arabic]
> > \setupbodyfont[main] \setupdirections[bidi=global] \starttext أهلاً
> وسهلاً
> > \stoptext
> >
> > |
> >
> > |Is that a bug or are more features to be specified? Thank you in
> advance.
> (you can probably best use the already define arabic featre because it
> also does some contextual stuff)
>
> anyway, there was an issue with the state querying (isol etc) as side
> effect of another thing .. fixed in next upload (there haven't been
> fundamental changes to the font handling for quite a while)
>
> 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] LMTX and descriptions

2020-11-24 Thread Hans Hagen

On 11/24/2020 7:44 PM, Wolfgang Schuster wrote:


This is a different problem which is unrelated to the description.
I'll update when Wolfgang has found some more glitches. (nearly all high 
level commands that take arguments get/got adapted this month so I bet 
that there are some more. No functional changes, only mess ups.)


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] new upload

2020-11-24 Thread Hans Hagen

Hi,

A new upload. Mojca upgraded the build manager and we also updated some 
machines so all binaries (platforms) should be in sync now. (No binaries 
for apples M1 and microsofts SQ2 as we don't have these machines, so 
just good old intel and arm it is.)


On my rusty laptop the luametatex manual takes between 10 and 10.5 sec 
(depending on load). On the raspberry pi 64 bit it takes 32.5 sec 
(ubuntu, ssd on usb 3). The Windows Linux Subsystem (version 1) takes 
some 11.5 seconds and the domotica fitlet with a low power AMD A10 needs 
27.5 sec.) The ratios match measurements of a while ago. In the meantime 
the format file got smaller, memory more dynamic and the mem footprint 
also smaller. I expect a modern intel laptop cpu to need some 5 seconds 
and a decent desktop less but who knows. It's not easy to squeeze out 
more (the bottleneck is in the lua code as the (con)tex(t) code is 
pretty efficient so we pay a price for flexibility).


(In the process I saw that I bugged the xetex logo but that has to wait 
for a next upload. Hardly critital I suspect.)


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] bTABLEhead not working

2020-11-24 Thread Bruce Horrocks
This worked for me a couple of versions ago but not under 2020.11.24 00:41. The 
headings are being printed as ordinary text at the top of the table rather than 
framed.

\starttext
\bTABLE[split=yes, header=repeat]
\bTABLEhead
  \bTR
\bTH A \eTH
\bTH B \eTH
  \eTR
\eTABLEhead
\bTABLEbody
  \bTR
\bTD 0 \eTD
\bTD zzz\eTD
  \eTR
\eTABLEbody
\eTABLE
\stoptext

--
Bruce Horrocks
Hampshire, UK

___
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] LMTX and descriptions

2020-11-24 Thread Wolfgang Schuster

Jean-Philippe Rey schrieb am 24.11.2020 um 19:33:

Dear list,

I am switching from MLIV to LMTX and I've found a problem with descriptions. 
Here is an example of the problem.

==
\definedescription[D]

\starttext
\D{Label} description % Label is not printed

\startD{Label} % OK, but pb with the following table
description
\stopD

\bTABLE
\bTR
\bTH Label \eTH % The first line is located on the left at the bottom 
of the table, TD works OK.
\eTR\bTR
\bTD value \eTD
\eTR
\eTABLE

\stoptext
==

The short syntax  "\D{Label} description" doesn't print "Label" at all.

The syntax with \start, \stop works fine but has a nasty effect on the next 
TABLE if it uses TH (check attached pdf).


This is a different problem which is unrelated to the description.

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] RE : upload

2020-11-24 Thread Floris van Manen
by creating a new empty ~/context folder, then unzip the distribution 
and running the install script made Context work again.


.F
___
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] startCSV Wiki, Natural Table

2020-11-24 Thread Wolfgang Schuster

Fabrice L schrieb am 24.11.2020 um 19:08:

Le 24 nov. 2020 à 12:52, Wolfgang Schuster  
a écrit :

Fabrice L schrieb am 24.11.2020 um 18:44:

Hi,
I was using in the past (MKII) a snippet of code to produce (natural) tables 
from CSV. I was trying to compile my code with MKIV, but this does not work 
anymore. As a matter of fact, it doe snot work at all, nor MKII, nor MKIV 
(probably my error !).
So I came back to the wiki, where my code came from, and the code below is just 
a copy for the wiki. It is supposed to make a table with three columns, but 
there is only one column in the resulting table…  I admit I do not understand 
the code, but is there is missing \eTR somewhere ?

Use the database module.

\usemodule[database]

\defineseparatedlist
  [CSV]
  [separator={,},
  before=\bTABLE,
   after=\eTABLE,
   first=\bTR,
last=\eTR,
left=\bTD,
   right=\eTD]

\starttext

\startCSV
1,2,3
3,5,6
7,8,9
\stopCSV

\stoptext

Wolfgang

Wolfgang, thanks. I have seen the use if the database module on the wiki, but 
was trying to do without it, the reason is that my documents are often shared 
with colleagues, for which installation of modules is most often very difficult.


There is nothing to install because the database module is part of ConTeXt.

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] LMTX and descriptions

2020-11-24 Thread Jean-Philippe Rey
Dear list,

I am switching from MLIV to LMTX and I've found a problem with descriptions. 
Here is an example of the problem.

==
\definedescription[D]

\starttext
\D{Label} description % Label is not printed

\startD{Label} % OK, but pb with the following table
description
\stopD

\bTABLE
\bTR
\bTH Label \eTH % The first line is located on the left at the bottom 
of the table, TD works OK.
\eTR\bTR
\bTD value \eTD
\eTR
\eTABLE

\stoptext
==

The short syntax  "\D{Label} description" doesn't print "Label" at all.

The syntax with \start, \stop works fine but has a nasty effect on the next 
TABLE if it uses TH (check attached pdf).

Thank you for your help

PS @Hans, thanks for adding \TB to \startcases, it works perfectly well.

-- 
Jean-Philippe Rey
jean-philippe@centralesupelec.fr
91192 Gif-sur-Yvette Cedex - France
Empreinte PGP : 807A 5B2C 69E4 D4B5 783A 428A 1B5E E83E 261B BF51


mfe-description.pdf
Description: Adobe PDF document


mfe-description.log
Description: Binary data


mfe-description.tex
Description: Binary data
___
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] RE : upload

2020-11-24 Thread Floris van Manen



On 24/11/2020 18:28, Pablo Rodriguez wrote:

I’m afraid you are getting an old version, since the newer one reads:

mtx-context | ConTeXt Process Management 1.04
mtx-context |
mtx-context | main context file:
/home/ousia/context/tex/texmf-context/tex/context/base/mkiv/context.mkiv
mtx-context | current version: 2020.11.24 00:41
mtx-context | main context file:
/home/ousia/context/tex/texmf-context/tex/context/base/mkxl/context.mkxl
mtx-context | current version: 2020.11.24 00:41


Well I can see that there is two versions.
But when unzipping the new context-linux-64.zip (nov 24 00:24)
then run the install script
sh ./install.sh
will not solve the issue...

So context is not working anymore.
Any hints?

.Floris
___
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] startCSV Wiki, Natural Table

2020-11-24 Thread Fabrice L


> Le 24 nov. 2020 à 12:52, Wolfgang Schuster 
>  a écrit :
> 
> Fabrice L schrieb am 24.11.2020 um 18:44:
>> Hi,
>> I was using in the past (MKII) a snippet of code to produce (natural) tables 
>> from CSV. I was trying to compile my code with MKIV, but this does not work 
>> anymore. As a matter of fact, it doe snot work at all, nor MKII, nor MKIV 
>> (probably my error !).
>> So I came back to the wiki, where my code came from, and the code below is 
>> just a copy for the wiki. It is supposed to make a table with three columns, 
>> but there is only one column in the resulting table…  I admit I do not 
>> understand the code, but is there is missing \eTR somewhere ?
> 
> Use the database module.
> 
> \usemodule[database]
> 
> \defineseparatedlist
>  [CSV]
>  [separator={,},
>  before=\bTABLE,
>   after=\eTABLE,
>   first=\bTR,
>last=\eTR,
>left=\bTD,
>   right=\eTD]
> 
> \starttext
> 
> \startCSV
> 1,2,3
> 3,5,6
> 7,8,9
> \stopCSV
> 
> \stoptext
> 
> Wolfgang

Wolfgang, thanks. I have seen the use if the database module on the wiki, but 
was trying to do without it, the reason is that my documents are often shared 
with colleagues, for which installation of modules is most often very 
difficult. 
Anyway, I will use the database module this time, so simple ! Thanks again.

Fabrice
___
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] Unexpected underbar behaviour in sections

2020-11-24 Thread Bruce Horrocks
The following is giving me a section title with triple underbars instead of 
single. 

\definehead [Heading] [section]
\setuphead [Heading] [style={\underbar}]
\starttext
\Heading{First level section heading}
\underbar{This is single underlined as expected}
\stoptext

(Same with \startHeading .. \stopHeading and for subsections, which is where I 
first noticed it.)

It looks quite attractive in its own way - and certainly acts as a visual 
highlight - just not quite what I was expecting. ;-)

version 2020.11.24 00:41

--
Bruce Horrocks
Hampshire, UK

___
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] startCSV Wiki, Natural Table

2020-11-24 Thread Wolfgang Schuster

Fabrice L schrieb am 24.11.2020 um 18:44:

Hi,

I was using in the past (MKII) a snippet of code to produce (natural) tables 
from CSV. I was trying to compile my code with MKIV, but this does not work 
anymore. As a matter of fact, it doe snot work at all, nor MKII, nor MKIV 
(probably my error !).

So I came back to the wiki, where my code came from, and the code below is just 
a copy for the wiki. It is supposed to make a table with three columns, but 
there is only one column in the resulting table…  I admit I do not understand 
the code, but is there is missing \eTR somewhere ?


Use the database module.

\usemodule[database]

\defineseparatedlist
  [CSV]
  [separator={,},
  before=\bTABLE,
   after=\eTABLE,
   first=\bTR,
last=\eTR,
left=\bTD,
   right=\eTD]

\starttext

\startCSV
1,2,3
3,5,6
7,8,9
\stopCSV

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


[NTG-context] startCSV Wiki, Natural Table

2020-11-24 Thread Fabrice L
Hi,

I was using in the past (MKII) a snippet of code to produce (natural) tables 
from CSV. I was trying to compile my code with MKIV, but this does not work 
anymore. As a matter of fact, it doe snot work at all, nor MKII, nor MKIV 
(probably my error !). 

So I came back to the wiki, where my code came from, and the code below is just 
a copy for the wiki. It is supposed to make a table with three columns, but 
there is only one column in the resulting table…  I admit I do not understand 
the code, but is there is missing \eTR somewhere ?

Thanks for any help.
Fabrice.

Ps: in case someone is interested, I use this to produce statistical tables for 
teaching. I can share.. ! 

% --
\starttext

% Iterate over all the lines of text captured with \obeylines active
% command to call is first argument, is not called for empty lines
\bgroup
\obeylines
\gdef\ProcessLines#1#2{\doProcessLines{#1}#2^^M\doProcessLines}%
\gdef\doProcessLines#1#2^^M#3\doProcessLines{%
 \doifnotempty{#2}{#1{#2}}%
 \doifnotempty{#3}{\doProcessLines{#1}#3\doProcessLines}%
}%
\egroup

\def\startCSV{\bgroup\obeylines\dostartCSV}

\def\TBLentry#1{\bTD#1\eTD}
\def\TBLline#1{\bTR\processcommalist[#1]\TBLentry}

\def\dostartCSV#1\stopCSV{%
  \bTABLE
  \ProcessLines\TBLline{#1}%
  \eTABLE
  \egroup
}

% some additional settings for the table may be made as well
\setupTABLE[c][2][style=\tt]
\setupTABLE[c][3][align=middle]
\setupTABLE[r][1][style=bold] 

\startCSV
Name,Email,Accepted
\CONTEXT,wo...@trying.to,Yes
Hans,m...@developer.of,Yes
Bug,g...@rid.of,No
\stopCSV

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


Re: [NTG-context] issue with links

2020-11-24 Thread Pablo Rodriguez
On 11/19/20 5:50 PM, Pablo Rodriguez wrote:
> Dear list,
>
> this MWE shows that links may be misbehaving again:
>
>   \setupindenting[yes, always, big]
>   \setupinteraction[state=start]
>   \enabledirectives[references.border]
>   \unexpanded\def\MyURL#1%
> {\bgroup\goto{{\tt\hyphenatedurl{#1}}}[url(#1)]\egroup}
>   \starttext
>   \dorecurse{10}{word }
>   \MyURL{https://www.mobileread.com/forums/showthread.php?t=183423}
>   \stoptext

Hans,

many thanks for having fixed the issue in current latest (2020.11.24 00:41).

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] RE : upload

2020-11-24 Thread Pablo Rodriguez
On 11/23/20 11:33 PM, Floris van Manen wrote:
> [...]
> I still get the error:
>
> csname overload > fatal error, protection level 4, control sequence
> 'textcontrolspace', properties 'immutable', file 'enco-ini.mkxl', line 315
>
> Also aafter the update I got two different current versions:
>
> $ context --version
> mtx-context | ConTeXt Process Management 1.04
> mtx-context |
> mtx-context | main context file:
> /home/vm/context/tex/texmf-context/tex/context/base/mkiv/context.mkiv
> mtx-context | current version: 2020.11.23 22:40
> mtx-context | main context file:
> /home/vm/context/tex/texmf-context/tex/context/base/mkiv/context.mkxl
> mtx-context | current version: 2020.11.19 11:28

Hi Floris,

I’m afraid you are getting an old version, since the newer one reads:

mtx-context | ConTeXt Process Management 1.04
mtx-context |
mtx-context | main context file:
/home/ousia/context/tex/texmf-context/tex/context/base/mkiv/context.mkiv
mtx-context | current version: 2020.11.24 00:41
mtx-context | main context file:
/home/ousia/context/tex/texmf-context/tex/context/base/mkxl/context.mkxl
mtx-context | current version: 2020.11.24 00:41

Just in case it helps,

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
___