ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Otared Kavian <otared@gmail.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: [NTG-context] Re: Question about building an array of values with Lua
Date: Thu, 24 Aug 2023 01:04:13 +0200	[thread overview]
Message-ID: <CFBDFF68-6078-49B1-9978-EBED2412A2C6@gmail.com> (raw)
In-Reply-To: <fc0ca692-0774-3586-17c3-769ec1351cad@gmail.com>


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

Hi Fabrice,

As Wolfgang points out, it is indeed possible to fill-in your table with Lua: maybe you were wondering how to fill the columns 2, 3 and 4. In this case you need to use the Lua function math.mod as in the following, which is a completed version of what Wolfgang sent:

%% begin filling-with-lua.tex
\starttext

\startluacode
context.startxtable{ align = "middle,lohi", bodyfont = "9pt", framecolor = "black" }
    context.startxrow{ background = "color", backgroundcolor = "lightgray" }
        context.startxcell{ nx = 4 }
            context("Units digit of")
        context.stopxcell()
    context.stopxrow()
    context.startxrow()
        context.startxcell{ width = "1cm" }
            context.im("a")
        context.stopxcell()
        context.startxcell{ width = "1cm" }
            context.im("a^2")
        context.stopxcell()
        context.startxcell{ width = "1cm" }
            context.im("b")
        context.stopxcell()
        context.startxcell{ width = "1cm" }
            context.im("2b^2")
        context.stopxcell()
    context.stopxrow()
    for i = 0,9 do
        context.startxrow()
            for j = 1,4 do
                context.startxcell()
                    if j == 1 then
                        context(i)
                    elseif j == 2 then
                    	context(math.mod(i*i,10))
			  elseif j == 3 then
			  	context(i)
			  else
			  	context(math.mod(2*i*i,10))
                    end
                context.stopxcell()
            end
        context.stopxrow()
    end
context.stopxtable()
\stopluacode

\stoptext
%% end filling-with-lua.tex

Best regards: Otared

> On 23 Aug 2023, at 17:48, Wolfgang Schuster <wolfgang.schuster.lists@gmail.com> wrote:
> 
> Fabrice Couvreur schrieb am 23.08.2023 um 19:28:
>> Hi,
>> I'm trying to fill an array using lua. So far it works but then I don't know if it's possible.
> 
> Where do you have problems (look into cld-mkiv.pdf for hins)?
> 
> \starttext
> 
> \startluacode
> context.startxtable{ align = "middle,lohi", bodyfont = "9pt", framecolor = "black" }
>     context.startxrow{ background = "color", backgroundcolor = "lightgray" }
>         context.startxcell{ nx = 4 }
>             context("Units digit of")
>         context.stopxcell()
>     context.stopxrow()
>     context.startxrow()
>         context.startxcell{ width = "1cm" }
>             context.im("a")
>         context.stopxcell()
>         context.startxcell{ width = "1cm" }
>             context.im("a^2")
>         context.stopxcell()
>         context.startxcell{ width = "1cm" }
>             context.im("b")
>         context.stopxcell()
>         context.startxcell{ width = "1cm" }
>             context.im("2b^2")
>         context.stopxcell()
>     context.stopxrow()
>     for i = 0,9 do
>         context.startxrow()
>             for j = 1,4 do
>                 context.startxcell()
>                     if j == 1 then
>                         context(i)
>                     end
>                 context.stopxcell()
>             end
>         context.stopxrow()
>     end
> context.stopxtable()
> \stopluacode
> 
> \stoptext
> 
> Wolfgang
> 
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : https://contextgarden.net
> ___________________________________________________________________________________

Otared Kavian
e-mail: otared@gmail.com
Phone: +33 6 88 26 70 95





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

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

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

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

  reply	other threads:[~2023-08-23 23:06 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-23 17:28 [NTG-context] " Fabrice Couvreur
2023-08-23 15:48 ` [NTG-context] " Wolfgang Schuster
2023-08-23 23:04   ` Otared Kavian [this message]
2023-08-24  4:03     ` Wolfgang Schuster
2023-08-24 10:50       ` Otared Kavian
2023-08-24 19:43         ` Wolfgang Schuster
2023-08-25 12:47           ` Fabrice Couvreur
2023-08-24 11:15       ` Fabrice Couvreur

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CFBDFF68-6078-49B1-9978-EBED2412A2C6@gmail.com \
    --to=otared@gmail.com \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).