[NTG-context] mtx-context | fatal error: return code: 11

2020-03-19 Thread Gerben Wierda
What does

mtx-context | fatal error: return code: 11

mean?

G___
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] write a subtitle under the title of a chapter using outlined font

2020-03-19 Thread Jeong Dal
Dear Hans,

I found how to.
By removing ‘& ditto’, then it works!

>   draw outlinetext.b ("\framed[align=normal]{" & \MPvar{tt}  & "}”)

Thank you so much.

Best regards,

Dalyoung

___
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] write a subtitle under the title of a chapter using outlined font

2020-03-19 Thread Jeong Dal
Dear Hans,

Thanks for the reply.
Your method works partly.

> 
>draw outlinetext.b ("\framed[align=normal]{" & ditto & \MPvar{tt} & ditto 
> & "}”)
> 

It allows to write it in two lines. However, the title is surrounded by ‘ “ ‘.
How to remove it?

Thank you 

Best regards,

Dalyoung
___
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] write a subtitle under the title of a chapter using outlined font

2020-03-19 Thread Hans Hagen

On 3/19/2020 2:26 PM, Jeong Dal wrote:

Hi,

long time ago, I can use outlined fonts for the title of a chapter by 
the help of the experts in this list.

Now, I’d like to write a subtitle under the title, but \crlf is not working.
I tried in several ways, but I couldn’t make it.

How to write them in two lines?


draw outlinetext.b ("\framed[align=normal]{" & ditto & \MPvar{tt} & 
ditto & "}")




Thanks.

Best regards,

Dalyoung

**
\startuseMPgraphic{outlineT}
   draw outlinetext.b (\MPvar{tt})
   (withcolor .75white)
   (withcolor .725blue withpen pencircle scaled .75pt);
\stopuseMPgraphic

\define[1]\outlineFill{\useMPgraphic{outlineT}{tt="#1"}}%

\setuphead[chapter,title]
  [textcommand=\outlineFill,
   color=.625Blue,
   numbercommand=\outlineFill,
   number=yes]

\setupbodyfont[rm, 12pt]

\starttext

\startchapter[title={First Title\crlf{\tfa Sub Title}}]
\input knuth
\stopchapter

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




--

-
  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] write a subtitle under the title of a chapter using outlined font

2020-03-19 Thread Jeong Dal
Hi,

long time ago, I can use outlined fonts for the title of a chapter by the help 
of the experts in this list.
Now, I’d like to write a subtitle under the title, but \crlf is not working.
I tried in several ways, but I couldn’t make it.

How to write them in two lines?

Thanks.

Best regards,

Dalyoung

**
\startuseMPgraphic{outlineT}
  draw outlinetext.b (\MPvar{tt})
  (withcolor .75white)
  (withcolor .725blue withpen pencircle scaled .75pt);
\stopuseMPgraphic

\define[1]\outlineFill{\useMPgraphic{outlineT}{tt="#1"}}%

\setuphead[chapter,title]
 [textcommand=\outlineFill,
  color=.625Blue,
  numbercommand=\outlineFill,
  number=yes]

\setupbodyfont[rm, 12pt]

\starttext

\startchapter[title={First Title\crlf{\tfa Sub Title}}]
\input knuth
\stopchapter

\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] Bug (Lua) ?

2020-03-19 Thread Hans van der Meer
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
> ___

___
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] Bug (Lua) ?

2020-03-19 Thread Aditya Mahajan

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
___


Re: [NTG-context] Bug (Lua) ?

2020-03-19 Thread Fabrice Couvreur
Hi mf,
Thanks !
Fabrice

Le jeu. 19 mars 2020 à 11:46, mf  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
>
> ___
>
___
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] Bug (Lua) ?

2020-03-19 Thread 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
___


Re: [NTG-context] Bug (Lua) ?

2020-03-19 Thread Hans Hagen

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
___


[NTG-context] Bug (Lua) ?

2020-03-19 Thread Fabrice Couvreur
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
___
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
___