ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Bug (Lua) ?
@ 2020-03-19 10:20 Fabrice Couvreur
  2020-03-19 10:37 ` Hans Hagen
  2020-03-19 10:46 ` mf
  0 siblings, 2 replies; 6+ messages in thread
From: Fabrice Couvreur @ 2020-03-19 10:20 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Hi,
this file did not pose any problems but today yes.
Thank you.
Fabrice

\starttext
\startluacode
local letters_1 = { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J" }
local letters_2 = { "1", "Année", "1998", "1999", "2000", "2001", "2002",
"2003", "2004", "2005","2006" }
context.startxtable({"align={middle,lohi},
width=1.2cm,offset=0.8ex,bodyfont=9pt"})

context.startxrow({"background=color,backgroundcolor=green"})
context.startxcell({"background=color,backgroundcolor=white,frame=off"})
context("")
context.stopxcell()
for _, letter in ipairs(letters_1) do
    context.startxcell()
    context(letter) context.stopxcell()
end
context.stopxrow()

context.startxrow()
for _, letter in ipairs(letters_2) do
    context.startxcell() context(letter) context.stopxcell()
end
context.stopxrow()

context.startxrow()
context.startxcell() context("2") context.stopxcell()
context.startxcell({"width=2cm"}) context("Prix (kg)") context.stopxcell()
for i=0,8 do
    context.startxcell() context("%0.5g",1.031^i) context.stopxcell()
end
context.stopxrow()

context.stopxtable()
\stopluacode
\stoptext


lua error       > lua error on line 34 in file /home/viserion/Table.tex:

[ctxlua]:5: unfinished string near '"align={middle,lohi},'

 1     \starttext
 2     \startluacode
 3     local letters_1 = { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J"
}
 4     local letters_2 = { "1", "Année", "1998", "1999", "2000", "2001",
"2002",
 5     "2003", "2004", "2005","2006" }
 6 >>  context.startxtable({"align={middle,lohi},
 7     width=1.2cm,offset=0.8ex,bodyfont=9pt"})
 8
 9     context.startxrow({"background=color,backgroundcolor=green"})
10
context.startxcell({"background=color,backgroundcolor=white,frame=off"})
11     context("")
12     context.stopxcell()
13     for _, letter in ipairs(letters_1) do
14         context.startxcell()
15         context(letter) context.stopxcell()
16     end

mtx-context     | fatal error: return code: 256

TeX Output exited abnormally with code 1 at Thu Mar 19 11:15:49

[-- Attachment #1.2: Type: text/html, Size: 4269 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Bug (Lua) ?
  2020-03-19 10:20 Bug (Lua) ? Fabrice Couvreur
@ 2020-03-19 10:37 ` Hans Hagen
  2020-03-19 10:46 ` mf
  1 sibling, 0 replies; 6+ messages in thread
From: Hans Hagen @ 2020-03-19 10:37 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Fabrice Couvreur

On 3/19/2020 11:20 AM, Fabrice Couvreur wrote:
> Hi,
> this file did not pose any problems but today yes.

really?

> lua error       > lua error on line 34 in file /home/viserion/Table.tex:
> 
> [ctxlua]:5: unfinished string near '"align={middle,lohi},'
there is a " before align

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

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

* Re: Bug (Lua) ?
  2020-03-19 10:20 Bug (Lua) ? Fabrice Couvreur
  2020-03-19 10:37 ` Hans Hagen
@ 2020-03-19 10:46 ` mf
  2020-03-19 10:49   ` Fabrice Couvreur
  2020-03-19 13:29   ` Aditya Mahajan
  1 sibling, 2 replies; 6+ messages in thread
From: mf @ 2020-03-19 10:46 UTC (permalink / raw)
  To: ntg-context

Il 19/03/20 11:20, Fabrice Couvreur ha scritto:
> Hi,
> this file did not pose any problems but today yes.
> Thank you.
> Fabrice
> 
> \starttext
> \startluacode
> local letters_1 = { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J" }
> local letters_2 = { "1", "Année", "1998", "1999", "2000", "2001", "2002",
> "2003", "2004", "2005","2006" }
> context.startxtable({"align={middle,lohi},
> width=1.2cm,offset=0.8ex,bodyfont=9pt"})
> 

context.startxtable( { align = "middle,lohi", width = "1.2cm", offset = 
"0.8ex", bodyfont = "9pt" } )

The argument is a lua table. Values are usually strings.

> context.startxrow({"background=color,backgroundcolor=green"})

context.startxrow( { background = "color", backgroundcolor = "green" } )

... and so on.

Best wishes,
Massi
___________________________________________________________________________________
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
___________________________________________________________________________________

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

* Re: Bug (Lua) ?
  2020-03-19 10:46 ` mf
@ 2020-03-19 10:49   ` Fabrice Couvreur
  2020-03-19 13:29   ` Aditya Mahajan
  1 sibling, 0 replies; 6+ messages in thread
From: Fabrice Couvreur @ 2020-03-19 10:49 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

Hi mf,
Thanks !
Fabrice

Le jeu. 19 mars 2020 à 11:46, mf <massifr@fastwebnet.it> a écrit :

> Il 19/03/20 11:20, Fabrice Couvreur ha scritto:
> > Hi,
> > this file did not pose any problems but today yes.
> > Thank you.
> > Fabrice
> >
> > \starttext
> > \startluacode
> > local letters_1 = { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J" }
> > local letters_2 = { "1", "Année", "1998", "1999", "2000", "2001", "2002",
> > "2003", "2004", "2005","2006" }
> > context.startxtable({"align={middle,lohi},
> > width=1.2cm,offset=0.8ex,bodyfont=9pt"})
> >
>
> context.startxtable( { align = "middle,lohi", width = "1.2cm", offset =
> "0.8ex", bodyfont = "9pt" } )
>
> The argument is a lua table. Values are usually strings.
>
> > context.startxrow({"background=color,backgroundcolor=green"})
>
> context.startxrow( { background = "color", backgroundcolor = "green" } )
>
> ... and so on.
>
> Best wishes,
> Massi
>
> ___________________________________________________________________________________
> 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
>
> ___________________________________________________________________________________
>

[-- Attachment #1.2: Type: text/html, Size: 2845 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Bug (Lua) ?
  2020-03-19 10:46 ` mf
  2020-03-19 10:49   ` Fabrice Couvreur
@ 2020-03-19 13:29   ` Aditya Mahajan
  2020-03-19 13:39     ` Hans van der Meer
  1 sibling, 1 reply; 6+ messages in thread
From: Aditya Mahajan @ 2020-03-19 13:29 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: text/plain, Size: 1027 bytes --]

On Thu, 19 Mar 2020, mf wrote:

> Il 19/03/20 11:20, Fabrice Couvreur ha scritto:
>> Hi,
>> this file did not pose any problems but today yes.
>> Thank you.
>> Fabrice
>> 
>> \starttext
>> \startluacode
>> local letters_1 = { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J" }
>> local letters_2 = { "1", "Année", "1998", "1999", "2000", "2001", "2002",
>> "2003", "2004", "2005","2006" }
>> context.startxtable({"align={middle,lohi},
>> width=1.2cm,offset=0.8ex,bodyfont=9pt"})
>> 
>
> context.startxtable( { align = "middle,lohi", width = "1.2cm", offset = 
> "0.8ex", bodyfont = "9pt" } )
>
> The argument is a lua table. Values are usually strings.
>
>> context.startxrow({"background=color,backgroundcolor=green"})
>
> context.startxrow( { background = "color", backgroundcolor = "green" } )
>
> ... and so on.

A table with just one string entry also works, but lua strings cannot be 
split across lines. So, if you remove the newline after 
"align={middle,lohi}, that also works.

Aditya

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Bug (Lua) ?
  2020-03-19 13:29   ` Aditya Mahajan
@ 2020-03-19 13:39     ` Hans van der Meer
  0 siblings, 0 replies; 6+ messages in thread
From: Hans van der Meer @ 2020-03-19 13:39 UTC (permalink / raw)
  To: NTG ConTeXt


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

Lua strings can be split across lines by using so called long brackets according to the Lua Reference Manual:
[[split
string]]

or (very first newline ignored):
[[
split
string]]

or with matched levels: [==[ .... ]==]

dr. Hans van der Meer


> On 19 Mar 2020, at 14:29, Aditya Mahajan <adityam@umich.edu> wrote:
> 
> On Thu, 19 Mar 2020, mf wrote:
> 
>> Il 19/03/20 11:20, Fabrice Couvreur ha scritto:
>>> Hi,
>>> this file did not pose any problems but today yes.
>>> Thank you.
>>> Fabrice
>>> \starttext
>>> \startluacode
>>> local letters_1 = { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J" }
>>> local letters_2 = { "1", "Année", "1998", "1999", "2000", "2001", "2002",
>>> "2003", "2004", "2005","2006" }
>>> context.startxtable({"align={middle,lohi},
>>> width=1.2cm,offset=0.8ex,bodyfont=9pt"})
>> 
>> context.startxtable( { align = "middle,lohi", width = "1.2cm", offset = "0.8ex", bodyfont = "9pt" } )
>> 
>> The argument is a lua table. Values are usually strings.
>> 
>>> context.startxrow({"background=color,backgroundcolor=green"})
>> 
>> context.startxrow( { background = "color", backgroundcolor = "green" } )
>> 
>> ... and so on.
> 
> A table with just one string entry also works, but lua strings cannot be split across lines. So, if you remove the newline after "align={middle,lohi}, that also works.
> 
> 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
> ___________________________________________________________________________________


[-- Attachment #1.2: Type: text/html, Size: 4238 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2020-03-19 13:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-19 10:20 Bug (Lua) ? Fabrice Couvreur
2020-03-19 10:37 ` Hans Hagen
2020-03-19 10:46 ` mf
2020-03-19 10:49   ` Fabrice Couvreur
2020-03-19 13:29   ` Aditya Mahajan
2020-03-19 13:39     ` Hans van der Meer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).