ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Aditya Mahajan <adityam@umich.edu>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: Set background color for a single page
Date: Tue, 23 Apr 2013 10:51:24 -0400 (EDT)	[thread overview]
Message-ID: <alpine.DEB.2.02.1304231048150.10242@nqv-guvaxcnq> (raw)
In-Reply-To: <BLU152-W1364162B5B74CE43323ADEA9B40@phx.gbl>

> Aditya, I want to know both please. Now I use the \start \definecolor 
> ...  ...  \startmakeup[standard] ...  \stopmakeup \stopto assign a 
> specific color to the tilepage whose content is on a single page 
> exactly. But I don't know how to set the background for a single page, 
> say, page 3 if a document has more than three pages. Also, I don't know 
> how to cycle pages through a finite list of colors. Can you show me 
> that? Tim

One way to do this is to set

\setupbackgrounds[page][background=color, backgroundcolor=\PageColor]

and define \PageColor such that it expands to an appropriate color. For 
arbitrary control, you can use a lua function, for example:

\startluacode
   thirddata = thirddata or {}

   function thirddata.getpagecolor(num)
     -- A lua function that assigns colors based on page numbers
     if num == 3 then
        context("blue")
     elseif num == 5 then
        context("red")
     end
   end
\stopluacode

\def\PageColor%
   {\ctxlua{thirddata.getpagecolor(\rawcountervalue[userpage])}}

\setupbackgrounds[page][background=color, backgroundcolor=\PageColor]

\setuppapersize[S3]
\starttext

\dorecurse{10}{\input knuth \par}

\stoptext

You can also use a lua table to assign colors, and then you do not have to 
build a ladder of if statements.

Aditya
___________________________________________________________________________________
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-04-23 14:51 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-23 10:51 Tim Li
2013-04-23 11:28 ` Aditya Mahajan
2013-04-23 13:17   ` Tim Li
2013-04-23 13:47     ` Aditya Mahajan
2013-04-23 14:17       ` Tim Li
2013-04-23 14:51         ` Aditya Mahajan [this message]
2013-04-23 15:05           ` Tim Li

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=alpine.DEB.2.02.1304231048150.10242@nqv-guvaxcnq \
    --to=adityam@umich.edu \
    --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).