ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Henri Menke <henrimenke@gmail.com>
To: ntg-context@ntg.nl
Subject: Re: date calculated with currentdate plus n days
Date: Tue, 14 Aug 2018 19:24:44 +1200	[thread overview]
Message-ID: <50f03770-3ce4-76a1-0966-52fc924e5226@gmail.com> (raw)
In-Reply-To: <ae02428a-27dc-162f-0681-95ce148ae17d@gmx.es>



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	other threads:[~2018-08-14  7:24 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-13 15:19 Jan U. Hasecke
2018-08-13 15:57 ` Pablo Rodriguez
2018-08-13 17:37   ` Jan U. Hasecke
2018-08-13 23:46     ` Henri Menke
2018-08-14  5:29       ` Pablo Rodriguez
2018-08-14  7:24         ` Henri Menke [this message]
2018-08-14 14:58           ` Pablo Rodriguez
2018-08-15  5:46             ` Use of context in lua (was: date calculated with currentdate plus n days) Jan U. Hasecke
2018-08-15  6:45               ` Use of context in lua Henri Menke

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=50f03770-3ce4-76a1-0966-52fc924e5226@gmail.com \
    --to=henrimenke@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).