ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: "śrīrāma via ntg-context" <ntg-context@ntg.nl>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Cc: śrīrāma <citturs@gmail.com>
Subject: Re: Makeup on same page as main content
Date: Sun, 06 Mar 2022 10:58:24 +0530	[thread overview]
Message-ID: <4720427.31r3eYUQgx@sreeramtplt> (raw)
In-Reply-To: <38282BBD-C8D5-4F99-A4EA-38E6B64FAAC8@gmail.com>

On Sunday, March 6, 2022 5:17 AM mastermind_ x via ntg-context wrote:
> Any pointers on how I can achieve this?

You don't have a MWE, so based on my understanding of your illustration, I have the following:

%%% SOF
  % required for 'cow'
  \setupexternalfigures[location={local,default}]

  \setvariables
    [assignments]
    [set={\setups[assignments:set]}]

  \startsetups assignments:set
  \writestatus{variables}{assignments:set is being called..}
  \startalignment[middle]
  \bTABLE[frame=off]
  \setupTABLE[c][1][align=flushleft,style=bold,distance=2cm]
  \setupTABLE[c][2][align={flushright,lohi}]
  \bTR
    \bTD \externalfigure[cow][height=2cm] \eTD
    \bTD \doiftextelse{\getvariable{assignments}{date}}{\getvariable{assignments}{date}}{\date} \eTD
  \eTR
  \bTR
    \bTD Course: \getvariable{assignments}{code} \eTD
    \bTD \getvariable{assignments}{assignment} \eTD
  \eTR
  \bTR
    \bTD Name \eTD
    \bTD \getvariable{assignments}{name} \eTD
  \eTR
  \bTR
    \bTD Class \eTD
    \bTD \getvariable{assignments}{class} \eTD
  \eTR
  \eTABLE
  \stopalignment
  \stopsetups

  \starttext
  \setvariables
    [assignments]
    [code={AB1234},
    date={January 1, 2038},
    assignment={whatever},
    name={the name},
    class={1970}]
  \input tufte

  \page
  \setvariables
    [assignments]
    [code={AB1234},
    date=,
    assignment={whatever},
    name={the name},
    class={2038}]
  \input knuth
  \stoptext
%%% EOF

Essentially, variables in ConTeXt has a nice set key which can be made to trigger anything when the variables are set. So you can give it a setup to do whatever you want by just saying 
\setvariables[assignments][...]
wherever in the document you desire. See here for an example [there is also a 'reset' key]:
	https://wiki.contextgarden.net/Setups

[Since you said 'framed assignment box' you can enable the frames of the cell you want, and change formatting as needed]

Sreeram


___________________________________________________________________________________
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:[~2022-03-06  5:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-05 23:47 mastermind_ x via ntg-context
2022-03-06  5:28 ` śrīrāma via ntg-context [this message]

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=4720427.31r3eYUQgx@sreeramtplt \
    --to=ntg-context@ntg.nl \
    --cc=citturs@gmail.com \
    /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).