[NTG-context] bug in latest beta?

2014-03-18 Thread Pablo Rodriguez
Dear list,

I cannot compile the following sample with latest beta:

\definefontfamily[mainface][serif][TeX Gyre Pagella]
\setupbodyfont[mainface,14pt]

\starttext
\startitemize

\item First item.

\item Second item.

\stopitemize

\stoptext


This worked fine with previous beta. Isn’t it 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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] bug in latest beta?

2014-03-18 Thread Wolfgang Schuster

Am 18.03.2014 um 18:30 schrieb Pablo Rodriguez oi...@gmx.es:

 Dear list,
 
 I cannot compile the following sample with latest beta:
 
 \definefontfamily[mainface][serif][TeX Gyre Pagella]
 \setupbodyfont[mainface,14pt]
 
 \starttext
 \startitemize
 
 \item First item.
 
 \item Second item.
 
 \stopitemize
 
 \stoptext
 
 
 This worked fine with previous beta. Isn’t it a bug?

You have to load a math font because the bullets for the items are taken by 
default from the math font.

BTW: When you have a font related bug check first if it happens also with 
\definetypeface.

\definetypeface[mainface][rm][serif][pagella][default]
\definetypeface[mainface][mm][math] [pagella][default] % comment to get the 
error

\setupbodyfont[mainface]

\starttext
\symbol[bullet]
\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] bug in latest beta?

2014-03-18 Thread Pablo Rodriguez
On 03/18/2014 06:39 PM, Wolfgang Schuster wrote:
 Am 18.03.2014 um 18:30 schrieb Pablo Rodriguez:
 Dear list,

 I cannot compile the following sample with latest beta:

 \definefontfamily[mainface][serif][TeX Gyre Pagella]
 \setupbodyfont[mainface,14pt]

 \starttext
 \startitemize

 \item First item.

 \item Second item.

 \stopitemize

 \stoptext


 This worked fine with previous beta. Isn’t it a bug?
 
 You have to load a math font because the bullets for the items are
 taken by default from the math font.

Many thanks for your help, Wolfgang.

It works fine now.


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
___


[NTG-context] issue with \processaction

2014-03-18 Thread Pablo Rodriguez
Dear list,

I have the following sample:

\def\CheckUser{\cldcommand{sprint(tex.vrbcatcodes,os.resultofwhoami)}}
\def\UserNumber{\processaction[\CheckUser][ousia=1, unknown=user unknown]}

\starttext
This is user \CheckUser\ with number \UserNumber.
\stoptext

which gives me the following output:

This is user ousia with number user unknown.

What am I doing wrong here?

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] issue with \processaction

2014-03-18 Thread Hans Hagen

On 3/18/2014 6:58 PM, Pablo Rodriguez wrote:

Dear list,

I have the following sample:

\def\CheckUser{\cldcommand{sprint(tex.vrbcatcodes,os.resultofwhoami)}}
\def\UserNumber{\processaction[\CheckUser][ousia=1, unknown=user unknown]}

\starttext
This is user \CheckUser\ with number \UserNumber.
\stoptext

which gives me the following output:

 This is user ousia with number user unknown.

What am I doing wrong here?

Many thanks for your help,


you output vrbcatcodes strings while you test using ctx catcodesn

of course i'd use lua for all of it:

\startluacode
local user  = 
local users = {
[oasi] = 1,
}
function document.CheckUser()
user = os.resultof(whoami)
context.verbatim(user)
end

function document.UserNumber(name)
context.verbatim(users[name or user] or 0)
end
\stopluacode

\def\CheckUser {\ctxlua{document.CheckUser ()}}
\def\UserNumber{\ctxlua{document.UserNumber()}}

\starttext
This is user \CheckUser\ with number \UserNumber.
\stoptext


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
 | 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] hyperlinks in latest beta?

2014-03-18 Thread Hans Hagen

On 3/17/2014 10:06 PM, Pablo Rodriguez wrote:

On 03/17/2014 06:12 PM, Alan Bowen wrote:

The following code produces the right cross-references but dead links,
at least at my end.
[...]
Is this a problem with the latest beta (ConTeXt  ver: 2014.03.16 19:58
MKIV beta)?


Hi Alan,

links work fine with beta from  2014.03.07 11:42.

But they seem to be broken in latest beta.


will be fixed in next beta

Hans


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
 | 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] hyperlinks in latest beta?

2014-03-18 Thread Alan Bowen
Great! Thanks, Hans.


On Tue, Mar 18, 2014 at 2:56 PM, Hans Hagen pra...@wxs.nl wrote:

 On 3/17/2014 10:06 PM, Pablo Rodriguez wrote:

 On 03/17/2014 06:12 PM, Alan Bowen wrote:

 The following code produces the right cross-references but dead links,
 at least at my end.
 [...]
 Is this a problem with the latest beta (ConTeXt  ver: 2014.03.16 19:58
 MKIV beta)?


 Hi Alan,

 links work fine with beta from  2014.03.07 11:42.

 But they seem to be broken in latest beta.


 will be fixed in next beta

 Hans


 -
   Hans Hagen | PRAGMA ADE
   Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
  | 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
 
 ___

___
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] issue with \processaction

2014-03-18 Thread Pablo Rodriguez
On 03/18/2014 07:55 PM, Hans Hagen wrote:
 On 3/18/2014 6:58 PM, Pablo Rodriguez wrote:

 \def\CheckUser{\cldcommand{sprint(tex.vrbcatcodes,os.resultofwhoami)}}
 \def\UserNumber{\processaction[\CheckUser][ousia=1, unknown=user unknown]}

 \starttext
 This is user \CheckUser\ with number \UserNumber.
 \stoptext

 What am I doing wrong here?
 
 you output vrbcatcodes strings while you test using ctx catcodesn
 
 of course i'd use lua for all of it:
 
 \startluacode
  local user  = 
  local users = {
  [oasi] = 1,
  }
  function document.CheckUser()
  user = os.resultof(whoami)
  context.verbatim(user)
  end
 
  function document.UserNumber(name)
  context.verbatim(users[name or user] or 0)
  end
 \stopluacode
 
 \def\CheckUser {\ctxlua{document.CheckUser ()}}
 \def\UserNumber{\ctxlua{document.UserNumber()}}
 
 \starttext
 This is user \CheckUser\ with number \UserNumber.
 \stoptext

Many thanks for your reply, Hans.

I’m afraid that the user doesn’t get recognized (I corrected the user
name above).

Is there no way to do it with \processaction?

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] issue with \processaction

2014-03-18 Thread Wolfgang Schuster

Am 18.03.2014 um 22:09 schrieb Pablo Rodriguez oi...@gmx.es:

 On 03/18/2014 07:55 PM, Hans Hagen wrote:
 On 3/18/2014 6:58 PM, Pablo Rodriguez wrote:
 
 \def\CheckUser{\cldcommand{sprint(tex.vrbcatcodes,os.resultofwhoami)}}
 \def\UserNumber{\processaction[\CheckUser][ousia=1, unknown=user unknown]}
 
 \starttext
 This is user \CheckUser\ with number \UserNumber.
 \stoptext
 
 What am I doing wrong here?
 
 you output vrbcatcodes strings while you test using ctx catcodesn
 
 of course i'd use lua for all of it:
 
 \startluacode
 local user  = 
 local users = {
 [oasi] = 1,
 }
 function document.CheckUser()
 user = os.resultof(whoami)
 context.verbatim(user)
 end
 
 function document.UserNumber(name)
 context.verbatim(users[name or user] or 0)
 end
 \stopluacode
 
 \def\CheckUser {\ctxlua{document.CheckUser ()}}
 \def\UserNumber{\ctxlua{document.UserNumber()}}
 
 \starttext
 This is user \CheckUser\ with number \UserNumber.
 \stoptext
 
 Many thanks for your reply, Hans.
 
 I’m afraid that the user doesn’t get recognized (I corrected the user
 name above).

The same applies to your examples because your test won’t work on our machines 
;)

 Is there no way to do it with \processaction?

Only when you ensure the text you get from Lua has the normal cathode regime 
and when
you special characters like \ in the result you have to convert them to 
\letterbackslash etc.
which isn’t simpler than Hans solution. The advantage of Hans solution is that 
you don’t
have to care about expansion.

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] issue with \processaction

2014-03-18 Thread Pablo Rodriguez
On 03/18/2014 10:40 PM, Wolfgang Schuster wrote:
 Am 18.03.2014 um 22:09 schrieb Pablo Rodriguez:
 On 03/18/2014 07:55 PM, Hans Hagen wrote:
 [...]
 
 you output vrbcatcodes strings while you test using ctx catcodesn

 of course i'd use lua for all of it:
 [...]
 I’m afraid that the user doesn’t get recognized (I corrected the user
 name above).
 
 The same applies to your examples because your test won’t work on
 our machines ;)

You’re right, Wolfgang, I chose the wrong sample.

The next one (AFAIK) should work on every OS:

\startluacode
 local user  = 
 local users = {
 [ousia] = 1,
 }
 function document.CheckUser()
 user = os.resultof(echo ousia)
 context.verbatim(user)
 end

 function document.UserNumber(name)
 context.verbatim(users[name or user] or 0)
 end
\stopluacode

\def\CheckUser {\ctxlua{document.CheckUser ()}}
\def\UserNumber{\ctxlua{document.UserNumber()}}

\starttext
This is user \CheckUser with number \UserNumber.
\stoptext

 Is there no way to do it with \processaction?
 
 Only when you ensure the text you get from Lua has the normal cathode
 regime and when you special characters like \ in the result you have
 to convert them to \letterbackslash etc. which isn’t simpler than
 Hans solution. The advantage of Hans solution is that you don’t have
 to care about expansion.

The solution from Hans is great. The only issue there is that it is much
harder to understand for me.

Since this is a minimal part in a way more complex implementation (at
least for me), I really need to use commands that I know what they do.
Pure Lua code is totally unknown to me. I don’t have any background in
programming.

This is the reason why I asked about \processaction.

Many thanks for your reply,


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] issue with \processaction

2014-03-18 Thread Aditya Mahajan

On Tue, 18 Mar 2014, Pablo Rodriguez wrote:


The next one (AFAIK) should work on every OS:

\startluacode
local user  = 
local users = {
[ousia] = 1,
}
function document.CheckUser()
user = os.resultof(echo ousia)
context.verbatim(user)
end

function document.UserNumber(name)
context.verbatim(users[name or user] or 0)
end
\stopluacode

\def\CheckUser {\ctxlua{document.CheckUser ()}}
\def\UserNumber{\ctxlua{document.UserNumber()}}

\starttext
This is user \CheckUser with number \UserNumber.
\stoptext


(Untested)

Change `local user` by

~~~
userdata = userdata or {}
userdata.user = 
~~~

and all other occurances of `user` by `userdata.user`.

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] Endnotes bug

2014-03-18 Thread Rik Kabel
Using both TL2013 and the current standalone beta (2014-03-16) I see a 
spurious comma in index entries referring to endnote locations. The 
following MWE shows the problem:


   \setupnote[footnote][location=none]
   \starttext
   Index in endnote.\footnote{\index{Why a comma?}Endnote.}
   \placefootnotes
   \placeindex
   \stoptext

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

[NTG-context] \seeindex and secondary index (register) levels

2014-03-18 Thread Rik Kabel
How can I get \seeindex to refer to other than the top-level of an index 
entry? In the following MWE, I would like to link to /text+more/, not 
/text,/ and not /text+some/. That is, the highlight should include the 
name of the lower level(s). The actual link should be to the page with 
the entry for the reference text in the case that the top level is on 
one page of the index and the secondary entry on the next page.


If this cannot be done, I can live with a separate \index{text, more} 
entry, but that is ugly when there are other text+something entries.


I would also like to be able to specify the format of the reference, 
perhaps with before/middle/after keys. This would allow /text - more/ 
or otherwise as my publisher's style guide may require.


   \setupinteraction[state=start]

   \starttext

   Some text\index{text+some}.

   More text\index{text+more}.

   And more\seeindex{I want}{text+more} and more\seeindex{I get}{text}.

   \placefootnotes

   \placeindex

   \stoptext


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