Re: [NTG-context] new lua/stack error

2017-02-24 Thread Aditya Mahajan

On Fri, 24 Feb 2017, Alan Bowen wrote:


Excellent, Hans. Many thanks!


Please wifify this!

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] new lua/stack error

2017-02-24 Thread Alan Bowen
Excellent, Hans. Many thanks!
Alan

On Fri, Feb 24, 2017 at 5:21 AM, Hans Hagen  wrote:

> On 2/23/2017 10:41 PM, Alan Bowen wrote:
>
>> In my larger document (approx 600 pages, over 1000 references)
>> problematic entries like \cite[{{A, B, and C}}] did not display at all,
>> though the document did process without claims of stack errors etc.
>> Curiously,
>> \goto{A, B, and C}[{{A, B, and C}}]
>> does work as expected.
>>
>
> i'll upload a beta that support this:
>
> \setupinteraction[state=start]
>
> \starttext
>
> \startchapter[reference={{A, B, and C}},title={Foo}]
>
> \in{IN}[name{A, B, and C}]
>
> \in{IN}[name(A, B, and C)]
>
> \stopchapter
>
> you need to be aware of the fact that references have some kind of syntax
> and are parsed (so that we only need one system for every kind of
> referencing); most make only sense for \goto but parsing happens anyway for
> \in and \at so i hooked name() into it, similar to [page(123)] we can have
> [name(abc)] now
>
> Hans
>
>
> Alan
>>
>> On Thu, Feb 23, 2017 at 4:12 PM, Alan Bowen > > wrote:
>>
>> Thanks, Hans! That does work nicely.
>>
>> On Thu, Feb 23, 2017 at 3:42 PM, Hans Hagen > > wrote:
>>
>> On 2/22/2017 6:21 PM, Alan Bowen wrote:
>>
>> Here is the file that I have been working with:
>>
>> \installlanguage[packed][en]
>> \setuplanguage[packed][spacing=packed]
>> \startsetups[tightspace]
>>   \spaceskip 0.5\interwordspace plus .5\interwordstretch minus
>> \interwordshrink
>> \stopsetups
>>
>> \def\dostartbibitem[#1]{\startBibItem[title={#1},reference={
>> #1}]}
>> \def\startbibitem{\dosingleempty\dostartbibitem}
>> \def\stopbibitem{\stopBibItem}
>>
>> \definedescription[BibItem][
>> width=broad,
>> margin=1.5pc,
>> indenting={no},
>> indentnext=no,
>> alternative=hanging,
>> hang=1,
>> headcommand=\gobbleoneargument,
>> align=right,
>> before={\directsetup{tightspace}\bgroup\language[packed]},
>> after={\egroup},
>> ]
>>
>> \definereferenceformat [cite]  [type=title,left={},right={}]
>> \definereferenceformat [bibpage]   [type=page]
>>
>> \starttext
>>
>> \startbibitem[A, B, and C]\stopbibitem % TEST by commenting
>> these
>> %\startbibitem[A{,} B{,} and C]\stopbibitem% lines out
>>
>> \startbibitem[ABC]\stopbibitem
>> \startbibitem[A]\stopbibitem
>> \startbibitem[B]\stopbibitem
>> \startbibitem[C]\stopbibitem
>>
>> * \cite[A, B, and C] \qquad{\red output should  be: A{,}
>> B{,} and C}
>>
>> **\cite[ABC] \qquad{\red output should be: ABC}
>>
>> ***\cite[A], \cite[B], \cite[C]  \qquad{\red output should
>> be: A, B, C}
>>
>> \cite[A]\cite[B]\cite[C] \qquad{\red output should be:
>> ABC}
>>
>> \stoptext
>>
>>
>> references can be a comma separated list, so
>>
>> A, B, and C
>>
>> is actually three tags:  "A" "B" "and C"
>>
>> so, you run into parsing problems, so how to deal with:
>>
>> [A, B, and C]
>>
>> maybe:
>>
>> [{A, B, and C}]
>>
>> alas, in comma separated list the first level of {} is removed
>> but we can cheat:
>>
>> [{{A, B, and C}}]
>>
>> works with \cite [{{A, B, and C}}]
>>
>> 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] new lua/stack error

2017-02-24 Thread Hans Hagen

On 2/23/2017 10:41 PM, Alan Bowen wrote:

In my larger document (approx 600 pages, over 1000 references)
problematic entries like \cite[{{A, B, and C}}] did not display at all,
though the document did process without claims of stack errors etc.
Curiously,
\goto{A, B, and C}[{{A, B, and C}}]
does work as expected.


i'll upload a beta that support this:

\setupinteraction[state=start]

\starttext

\startchapter[reference={{A, B, and C}},title={Foo}]

\in{IN}[name{A, B, and C}]

\in{IN}[name(A, B, and C)]

\stopchapter

you need to be aware of the fact that references have some kind of 
syntax and are parsed (so that we only need one system for every kind of 
referencing); most make only sense for \goto but parsing happens anyway 
for \in and \at so i hooked name() into it, similar to [page(123)] we 
can have [name(abc)] now


Hans



Alan

On Thu, Feb 23, 2017 at 4:12 PM, Alan Bowen > wrote:

Thanks, Hans! That does work nicely.

On Thu, Feb 23, 2017 at 3:42 PM, Hans Hagen > wrote:

On 2/22/2017 6:21 PM, Alan Bowen wrote:

Here is the file that I have been working with:

\installlanguage[packed][en]
\setuplanguage[packed][spacing=packed]
\startsetups[tightspace]
  \spaceskip 0.5\interwordspace plus .5\interwordstretch minus
\interwordshrink
\stopsetups

\def\dostartbibitem[#1]{\startBibItem[title={#1},reference={#1}]}
\def\startbibitem{\dosingleempty\dostartbibitem}
\def\stopbibitem{\stopBibItem}

\definedescription[BibItem][
width=broad,
margin=1.5pc,
indenting={no},
indentnext=no,
alternative=hanging,
hang=1,
headcommand=\gobbleoneargument,
align=right,
before={\directsetup{tightspace}\bgroup\language[packed]},
after={\egroup},
]

\definereferenceformat [cite]  [type=title,left={},right={}]
\definereferenceformat [bibpage]   [type=page]

\starttext

\startbibitem[A, B, and C]\stopbibitem % TEST by commenting
these
%\startbibitem[A{,} B{,} and C]\stopbibitem% lines out

\startbibitem[ABC]\stopbibitem
\startbibitem[A]\stopbibitem
\startbibitem[B]\stopbibitem
\startbibitem[C]\stopbibitem

* \cite[A, B, and C] \qquad{\red output should  be: A{,}
B{,} and C}

**\cite[ABC] \qquad{\red output should be: ABC}

***\cite[A], \cite[B], \cite[C]  \qquad{\red output should
be: A, B, C}

\cite[A]\cite[B]\cite[C] \qquad{\red output should be: ABC}

\stoptext


references can be a comma separated list, so

A, B, and C

is actually three tags:  "A" "B" "and C"

so, you run into parsing problems, so how to deal with:

[A, B, and C]

maybe:

[{A, B, and C}]

alas, in comma separated list the first level of {} is removed
but we can cheat:

[{{A, B, and C}}]

works with \cite [{{A, B, and C}}]

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

___





___
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] new lua/stack error

2017-02-23 Thread Alan Bowen
In my larger document (approx 600 pages, over 1000 references)
problematic entries like \cite[{{A, B, and C}}] did not display at all,
though the document did process without claims of stack errors etc.
Curiously,
\goto{A, B, and C}[{{A, B, and C}}]
does work as expected.

Alan

On Thu, Feb 23, 2017 at 4:12 PM, Alan Bowen  wrote:

> Thanks, Hans! That does work nicely.
>
> On Thu, Feb 23, 2017 at 3:42 PM, Hans Hagen  wrote:
>
>> On 2/22/2017 6:21 PM, Alan Bowen wrote:
>>
>>> Here is the file that I have been working with:
>>>
>>> \installlanguage[packed][en]
>>> \setuplanguage[packed][spacing=packed]
>>> \startsetups[tightspace]
>>>   \spaceskip 0.5\interwordspace plus .5\interwordstretch minus
>>> \interwordshrink
>>> \stopsetups
>>>
>>> \def\dostartbibitem[#1]{\startBibItem[title={#1},reference={#1}]}
>>> \def\startbibitem{\dosingleempty\dostartbibitem}
>>> \def\stopbibitem{\stopBibItem}
>>>
>>> \definedescription[BibItem][
>>> width=broad,
>>> margin=1.5pc,
>>> indenting={no},
>>> indentnext=no,
>>> alternative=hanging,
>>> hang=1,
>>> headcommand=\gobbleoneargument,
>>> align=right,
>>> before={\directsetup{tightspace}\bgroup\language[packed]},
>>> after={\egroup},
>>> ]
>>>
>>> \definereferenceformat [cite]  [type=title,left={},right={}]
>>> \definereferenceformat [bibpage]   [type=page]
>>>
>>> \starttext
>>>
>>> \startbibitem[A, B, and C]\stopbibitem % TEST by commenting these
>>> %\startbibitem[A{,} B{,} and C]\stopbibitem% lines out
>>>
>>> \startbibitem[ABC]\stopbibitem
>>> \startbibitem[A]\stopbibitem
>>> \startbibitem[B]\stopbibitem
>>> \startbibitem[C]\stopbibitem
>>>
>>> * \cite[A, B, and C] \qquad{\red output should  be: A{,} B{,} and C}
>>>
>>> **\cite[ABC] \qquad{\red output should be: ABC}
>>>
>>> ***\cite[A], \cite[B], \cite[C]  \qquad{\red output should be: A, B, C}
>>>
>>> \cite[A]\cite[B]\cite[C] \qquad{\red output should be: ABC}
>>>
>>> \stoptext
>>>
>>
>> references can be a comma separated list, so
>>
>> A, B, and C
>>
>> is actually three tags:  "A" "B" "and C"
>>
>> so, you run into parsing problems, so how to deal with:
>>
>> [A, B, and C]
>>
>> maybe:
>>
>> [{A, B, and C}]
>>
>> alas, in comma separated list the first level of {} is removed but we can
>> cheat:
>>
>> [{{A, B, and C}}]
>>
>> works with \cite [{{A, B, and C}}]
>>
>> 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/list
>> info/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] new lua/stack error

2017-02-23 Thread Alan Bowen
Thanks, Hans! That does work nicely.

On Thu, Feb 23, 2017 at 3:42 PM, Hans Hagen  wrote:

> On 2/22/2017 6:21 PM, Alan Bowen wrote:
>
>> Here is the file that I have been working with:
>>
>> \installlanguage[packed][en]
>> \setuplanguage[packed][spacing=packed]
>> \startsetups[tightspace]
>>   \spaceskip 0.5\interwordspace plus .5\interwordstretch minus
>> \interwordshrink
>> \stopsetups
>>
>> \def\dostartbibitem[#1]{\startBibItem[title={#1},reference={#1}]}
>> \def\startbibitem{\dosingleempty\dostartbibitem}
>> \def\stopbibitem{\stopBibItem}
>>
>> \definedescription[BibItem][
>> width=broad,
>> margin=1.5pc,
>> indenting={no},
>> indentnext=no,
>> alternative=hanging,
>> hang=1,
>> headcommand=\gobbleoneargument,
>> align=right,
>> before={\directsetup{tightspace}\bgroup\language[packed]},
>> after={\egroup},
>> ]
>>
>> \definereferenceformat [cite]  [type=title,left={},right={}]
>> \definereferenceformat [bibpage]   [type=page]
>>
>> \starttext
>>
>> \startbibitem[A, B, and C]\stopbibitem % TEST by commenting these
>> %\startbibitem[A{,} B{,} and C]\stopbibitem% lines out
>>
>> \startbibitem[ABC]\stopbibitem
>> \startbibitem[A]\stopbibitem
>> \startbibitem[B]\stopbibitem
>> \startbibitem[C]\stopbibitem
>>
>> * \cite[A, B, and C] \qquad{\red output should  be: A{,} B{,} and C}
>>
>> **\cite[ABC] \qquad{\red output should be: ABC}
>>
>> ***\cite[A], \cite[B], \cite[C]  \qquad{\red output should be: A, B, C}
>>
>> \cite[A]\cite[B]\cite[C] \qquad{\red output should be: ABC}
>>
>> \stoptext
>>
>
> references can be a comma separated list, so
>
> A, B, and C
>
> is actually three tags:  "A" "B" "and C"
>
> so, you run into parsing problems, so how to deal with:
>
> [A, B, and C]
>
> maybe:
>
> [{A, B, and C}]
>
> alas, in comma separated list the first level of {} is removed but we can
> cheat:
>
> [{{A, B, and C}}]
>
> works with \cite [{{A, B, and C}}]
>
> 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/list
> info/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] new lua/stack error

2017-02-23 Thread Hans Hagen

On 2/22/2017 6:21 PM, Alan Bowen wrote:

Here is the file that I have been working with:

\installlanguage[packed][en]
\setuplanguage[packed][spacing=packed]
\startsetups[tightspace]
  \spaceskip 0.5\interwordspace plus .5\interwordstretch minus
\interwordshrink
\stopsetups

\def\dostartbibitem[#1]{\startBibItem[title={#1},reference={#1}]}
\def\startbibitem{\dosingleempty\dostartbibitem}
\def\stopbibitem{\stopBibItem}

\definedescription[BibItem][
width=broad,
margin=1.5pc,
indenting={no},
indentnext=no,
alternative=hanging,
hang=1,
headcommand=\gobbleoneargument,
align=right,
before={\directsetup{tightspace}\bgroup\language[packed]},
after={\egroup},
]

\definereferenceformat [cite]  [type=title,left={},right={}]
\definereferenceformat [bibpage]   [type=page]

\starttext

\startbibitem[A, B, and C]\stopbibitem % TEST by commenting these
%\startbibitem[A{,} B{,} and C]\stopbibitem% lines out

\startbibitem[ABC]\stopbibitem
\startbibitem[A]\stopbibitem
\startbibitem[B]\stopbibitem
\startbibitem[C]\stopbibitem

* \cite[A, B, and C] \qquad{\red output should  be: A{,} B{,} and C}

**\cite[ABC] \qquad{\red output should be: ABC}

***\cite[A], \cite[B], \cite[C]  \qquad{\red output should be: A, B, C}

\cite[A]\cite[B]\cite[C] \qquad{\red output should be: ABC}

\stoptext


references can be a comma separated list, so

A, B, and C

is actually three tags:  "A" "B" "and C"

so, you run into parsing problems, so how to deal with:

[A, B, and C]

maybe:

[{A, B, and C}]

alas, in comma separated list the first level of {} is removed but we 
can cheat:


[{{A, B, and C}}]

works with \cite [{{A, B, and C}}]

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] new lua/stack error

2017-02-22 Thread Alan Bowen
Here is the file that I have been working with:

\installlanguage[packed][en]
\setuplanguage[packed][spacing=packed]
\startsetups[tightspace]
  \spaceskip 0.5\interwordspace plus .5\interwordstretch minus
\interwordshrink
\stopsetups

\def\dostartbibitem[#1]{\startBibItem[title={#1},reference={#1}]}
\def\startbibitem{\dosingleempty\dostartbibitem}
\def\stopbibitem{\stopBibItem}

\definedescription[BibItem][
width=broad,
margin=1.5pc,
indenting={no},
indentnext=no,
alternative=hanging,
hang=1,
headcommand=\gobbleoneargument,
align=right,
before={\directsetup{tightspace}\bgroup\language[packed]},
after={\egroup},
]

\definereferenceformat [cite]  [type=title,left={},right={}]
\definereferenceformat [bibpage]   [type=page]

\starttext

\startbibitem[A, B, and C]\stopbibitem % TEST by commenting these
%\startbibitem[A{,} B{,} and C]\stopbibitem % lines out

\startbibitem[ABC]\stopbibitem
\startbibitem[A]\stopbibitem
\startbibitem[B]\stopbibitem
\startbibitem[C]\stopbibitem

* \cite[A, B, and C] \qquad{\red output should  be: A{,} B{,} and C}

**\cite[ABC] \qquad{\red output should be: ABC}

***\cite[A], \cite[B], \cite[C]  \qquad{\red output should be: A, B, C}

\cite[A]\cite[B]\cite[C] \qquad{\red output should be: ABC}

\stoptext


On Wed, Feb 22, 2017 at 11:44 AM, Hans Hagen  wrote:

> On 2/22/2017 4:50 PM, Alan Bowen wrote:
>
>> Hi, Hans—
>>
>> The problem is the line \startbibitem[A, B, and C]\stopbibitem. I can
>> either keep it and any others like  \cite[A], \cite[B] or
>> \cite[A]\cite[B] are messed up or I can comment it out and these same
>> citations work.
>> \startbibitem[A{,} B{,}and C]\stopbibitem (as you suggested) does allow
>> the other citations to work. But, then, neither \cite[A, B, and C] nor
>> the \cite[A{,} B{,} and C] works.
>>
>
> so we need a small example
>
>
> -
>   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/list
> info/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] new lua/stack error

2017-02-22 Thread Hans Hagen

On 2/22/2017 4:50 PM, Alan Bowen wrote:

Hi, Hans—

The problem is the line \startbibitem[A, B, and C]\stopbibitem. I can
either keep it and any others like  \cite[A], \cite[B] or
\cite[A]\cite[B] are messed up or I can comment it out and these same
citations work.
\startbibitem[A{,} B{,}and C]\stopbibitem (as you suggested) does allow
the other citations to work. But, then, neither \cite[A, B, and C] nor
the \cite[A{,} B{,} and C] works.


so we need a small example

-
  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] new lua/stack error

2017-02-22 Thread Alan Bowen
Hi, Hans—

The problem is the line \startbibitem[A, B, and C]\stopbibitem. I can
either keep it and any others like  \cite[A], \cite[B] or \cite[A]\cite[B]
are messed up or I can comment it out and these same citations work.
\startbibitem[A{,} B{,}and C]\stopbibitem (as you suggested) does allow the
other citations to work. But, then, neither \cite[A, B, and C] nor the
\cite[A{,} B{,} and C] works.

Alan


On Wed, Feb 22, 2017 at 3:26 AM, Hans Hagen  wrote:

> On 2/21/2017 8:25 PM, Alan Bowen wrote:
>
>> The latest beta — ConTeXt  ver: 2017.02.19  with LuaTeX, Version 1.0.3
>> — chokes on entries such as
>> \cite[author1, author2, and author3 2017]
>> and reports an error: e.g.,
>>
>>
>> lua error   > lua error on line 81 in file c_Brill09-02_Evans.tex:
>>
>>
>> C stack overflow
>>
>> stack traceback:
>>
>> [C]: in function 'type'
>>
>> ...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:373: in
>> function <...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua
>> :367>
>>
>> [C]: in function 'tostring'
>>
>> ...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:342: in
>> function <...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua
>> :317>
>>
>>
>> If I try something like
>> \cite[A B and C] all is well.
>> Adding the commas as in \cite[A, B, and C] gets the error.
>> Sadly, I need the commas.
>>
>
> does {,} solve it? probably the commas end up sometime later in a comma
> separated list
>
> 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/list
> info/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] new lua/stack error

2017-02-22 Thread Hans Hagen

On 2/21/2017 8:25 PM, Alan Bowen wrote:

The latest beta — ConTeXt  ver: 2017.02.19  with LuaTeX, Version 1.0.3
— chokes on entries such as
\cite[author1, author2, and author3 2017]
and reports an error: e.g.,


lua error   > lua error on line 81 in file c_Brill09-02_Evans.tex:


C stack overflow

stack traceback:

[C]: in function 'type'

...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:373: in
function <...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:367>

[C]: in function 'tostring'

...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:342: in
function <...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:317>


If I try something like
\cite[A B and C] all is well.
Adding the commas as in \cite[A, B, and C] gets the error.
Sadly, I need the commas.


does {,} solve it? probably the commas end up sometime later in a comma 
separated list


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] new lua/stack error

2017-02-21 Thread Alan Braslau
\cite [A,B,C]


On Tue, 21 Feb 2017 14:42:23 -0500
Alan Bowen  wrote:

> I should add that the problem is with this entry alone. Otherwise the
> citations in the chapter work as they should. (Other chapters fail
> for the same reason—one of the many citations with commas seems to
> cause the error.)
> 
> The book processed with incident in the previous beta
> 
> Any suggestions about to address this will be gladly received.
> 
> A.
> 
> On Tue, Feb 21, 2017 at 2:25 PM, Alan Bowen 
> wrote:
> 
> > The latest beta — ConTeXt  ver: 2017.02.19  with LuaTeX, Version
> > 1.0.3 — chokes on entries such as
> > \cite[author1, author2, and author3 2017]
> > and reports an error: e.g.,
> >
> >
> > lua error   > lua error on line 81 in file
> > c_Brill09-02_Evans.tex:
> >
> >
> > C stack overflow
> >
> > stack traceback:
> >
> > [C]: in function 'type'
> >
> > ...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:373: in
> > function
> > <...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:367>
> >
> > [C]: in function 'tostring'
> >
> > ...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:342: in
> > function
> > <...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:317>
> >
> > If I try something like
> > \cite[A B and C] all is well.
> > Adding the commas as in \cite[A, B, and C] gets the error.
> > Sadly, I need the commas.
> >
> > Alan
> >



-- 
Alan Braslau
CEA DSM-IRAMIS-SPEC
CNRS UMR 3680
Orme des Merisiers
91191 Gif-sur-Yvette cedex FRANCE
tel: +33 1 69 08 73 15
fax: +33 1 69 08 87 86
mailto:alan.bras...@cea.fr
___
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] new lua/stack error

2017-02-21 Thread Alan Bowen
I should add that the problem is with this entry alone. Otherwise the
citations in the chapter work as they should. (Other chapters fail for the
same reason—one of the many citations with commas seems to cause the
error.)

The book processed with incident in the previous beta

Any suggestions about to address this will be gladly received.

A.

On Tue, Feb 21, 2017 at 2:25 PM, Alan Bowen  wrote:

> The latest beta — ConTeXt  ver: 2017.02.19  with LuaTeX, Version 1.0.3 — 
> chokes
> on entries such as
> \cite[author1, author2, and author3 2017]
> and reports an error: e.g.,
>
>
> lua error   > lua error on line 81 in file c_Brill09-02_Evans.tex:
>
>
> C stack overflow
>
> stack traceback:
>
> [C]: in function 'type'
>
> ...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:373: in
> function <...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:367>
>
> [C]: in function 'tostring'
>
> ...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:342: in
> function <...eXt/tex/texmf-context/tex/context/base/mkiv/lpdf-ini.lua:317>
>
> If I try something like
> \cite[A B and C] all is well.
> Adding the commas as in \cite[A, B, and C] gets the error.
> Sadly, I need the commas.
>
> Alan
>
___
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
___