On 14/08/18 17:29, Pablo Rodriguez wrote:
On 08/14/2018 01:46 AM, Henri Menke wrote:
On top of that I recommend to use context.date to get the correct
formatting according to the current language options:

\def\duedate{\ctxlua{
    local t = os.date('*t', os.time()+ 10 * 24 * 3600)
    context.date{ d = t.day, m = t.month, y = t.year }
}}

Many thanks for your reply, Henri.

Where are those context.* Lua commands documented?

I want to generate an xtable using Lua code, but I don’t know where to read.

They aren't documented because they are just the context commands. You can read more about how it works in http://www.pragma-ade.nl/general/manuals/cld-mkiv.pdf

Here a little sample with an xtable:

\starttext

\startluacode
local function duedate()
    local t = os.date('*t', os.time()+ 10 * 24 * 3600)
    context.date{ d = t.day, m = t.month, y = t.year }
end

context.startxtable{frame = "off"}
   context.NC() context("Note") context.NC() context("Date") context.NR()
context.NC() context("Hand in before") context.NC() duedate() context.NR()
context.stopxtable()
\stopluacode

\stoptext


Many thanks for your help,

Pablo

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

Reply via email to