ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Marco Patzer <homerow@lavabit.com>
To: ntg-context@ntg.nl
Subject: Re: deferred variable lookup in environment?
Date: Sat, 2 Feb 2013 00:31:59 +0100	[thread overview]
Message-ID: <20130201233159.GF26731@homerow> (raw)
In-Reply-To: <510C4B3F.5080304@ingohohmann.de>


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

On 2013–02–02 Ingo Hohmann wrote:

> I'm trying to have the date in a layer in an environment. In the
> text using the environment, I want to be able to set the date.
> If the date is not set, the current date should be used, otherwise
> the set date.
> This is what I've tried, but it is always the currentdate, that is
> displayes.

You are trying to use the date before it is defined. You can use a
two-pass mechanism:

\define\mydate{\datasetvariable{mydata}{date}{date}}

\definelayer
  [firstpage]

\setlayer
  [firstpage]
  [hoffset=14cm, voffset=3.5cm]
  {\framed[frame=on, width=4cm, height=2cm]{%%
    \doiftextelse{\mydate}{\mydate}{\currentdate}}}

\setupbackgrounds
  [page]
  [background=firstpage]

\definedataset
  [mydata]

\setdataset
  [mydata]
  [date]
  [date=2011-11-11]

\starttext
  \doiftextelse{\mydate}{\mydate}{\currentdate}
\stoptext

Marco

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

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

___________________________________________________________________________________
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

  reply	other threads:[~2013-02-01 23:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-01 23:09 Ingo Hohmann
2013-02-01 23:31 ` Marco Patzer [this message]
2013-02-05 15:01   ` Ingo Hohmann
2013-02-05 15:29     ` Marco Patzer

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=20130201233159.GF26731@homerow \
    --to=homerow@lavabit.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).