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
On 3/19/2020 11:20 AM, Fabrice Couvreur wrote:
Hi, this file did not pose any problems but today yes.
lua error > lua error on line 34 in file /home/viserion/Table.tex:
[ctxlua]:5: unfinished string near '"align={middle,lohi},'
really? 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 -----------------------------------------------------------------
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
Hi mf,
Thanks !
Fabrice
Le jeu. 19 mars 2020 à 11:46, mf
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
___________________________________________________________________________________
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
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
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 ___________________________________________________________________________________
participants (5)
-
Aditya Mahajan
-
Fabrice Couvreur
-
Hans Hagen
-
Hans van der Meer
-
mf