ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Wolfgang Schuster via ntg-context <ntg-context@ntg.nl>
To: Fabrice Couvreur <fabrice1.couvreur@gmail.com>
Cc: Wolfgang Schuster <wolfgang.schuster.lists@gmail.com>,
	mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: Test for displaying a header
Date: Sat, 28 Aug 2021 14:24:34 +0200	[thread overview]
Message-ID: <4dc20de3-1be1-cc55-7362-54194d1cffb6@gmail.com> (raw)
In-Reply-To: <CACyK-epiR+X+r_TRJOH+0rz8v_FKAFH7ooR3xqkp1hPdNNm4dg@mail.gmail.com>

Fabrice,

there is difference between putting something on the first page 
regardless of the number of pages in your document or do something when 
your document contains only a single or more pages.


When you have a header or title which is always placed on the first page 
(but not on the following pages) you have to options.

     1. Check the current page when to header is placed which can be 
done with \doif{\pagenumber}{1}{...}

     2. Disable the header on the first page (\setupheader[state=high]) 
and place your own title as a regular element in the running text.


A case where you have to number the number of total pages is when you 
try to show the page counter in the form "Page x of y" for 2 or more 
pages. In this case you have to check against the value for the total 
number of pages which can be done with 
\doifnot{\totalnumberofpages}{1}{...}.


Below are two examples which show how the header/title placement works.

%%%% start example 1
\startsetups [header]
     \startframed [width=max,height=max]
         First page header
     \stopframed
\stopsetups

\startsetups [footer]
     Page \userpagenumber\ of \lastuserpagenumber
\stopsetups

\setupheadertexts
   [\doif{\pagenumber}{1}{\directsetup{header}}]

\setupfootertexts
   [\doifnot{\totalnumberofpages}{1}{\directsetup{footer}}]

\starttext
\dorecurse{12}{\samplefile{lorem}\par}
\stoptext
%%%% stop example 1

%%%% start example 2
\startsetups [header]
     \setupheader[state=high]
     \startframed [width=max,height=3cm]
         First page header
     \stopframed
     \blank
\stopsetups

\startsetups [footer]
     Page \userpagenumber\ of \lastuserpagenumber
\stopsetups

\setuppagenumbering
   [location=none]

\setupfootertexts
   [\doifnot{\totalnumberofpages}{1}{\directsetup{footer}}]

\starttext

\setup[header]

\dorecurse{12}{\samplefile{lorem}\par}

\stoptext
%%%% stop example 2

Wolfgang

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

      parent reply	other threads:[~2021-08-28 12:24 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-26 14:07 Fabrice Couvreur via ntg-context
2021-08-26 14:34 ` Taco Hoekwater via ntg-context
2021-08-26 15:56   ` Wolfgang Schuster via ntg-context
2021-08-26 17:06     ` Fabrice Couvreur via ntg-context
2021-08-26 17:56       ` Wolfgang Schuster via ntg-context
     [not found]         ` <CACyK-eryA8rxnsbOXbU7aOW0=PHFKsLSchU-J5vn7CsjOpJT2A@mail.gmail.com>
2021-08-27 16:05           ` Wolfgang Schuster via ntg-context
     [not found]             ` <CACyK-eqnhx1dAAVBe3HK_OVR+e+HZ6han1enQkx_GukTd9cG-Q@mail.gmail.com>
     [not found]               ` <38a9bada-8507-ef96-c09a-7c48c865049b@gmail.com>
     [not found]                 ` <CACyK-eoL6uhusTErcq+P0HQ8_O9EN+ZV-MXtEOKo-iby4BHBVA@mail.gmail.com>
     [not found]                   ` <CACyK-epiR+X+r_TRJOH+0rz8v_FKAFH7ooR3xqkp1hPdNNm4dg@mail.gmail.com>
2021-08-28 12:24                     ` Wolfgang Schuster 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=4dc20de3-1be1-cc55-7362-54194d1cffb6@gmail.com \
    --to=ntg-context@ntg.nl \
    --cc=fabrice1.couvreur@gmail.com \
    --cc=wolfgang.schuster.lists@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).