ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* markings and syncing
@ 2015-10-22 11:51 Thomas A. Schmitz
  2015-10-22 15:59 ` Wolfgang Schuster
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas A. Schmitz @ 2015-10-22 11:51 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi,

I'm trying to set up a header: if a page contains only one marking, it 
should display this, if it has more than one, display the first and 
last. Here's what I tried, unsuccessfully:

\definemarking [test]

\startsetups [test header]
\doifelse {\expanded{\getmarking[test][top]}} 
{\expanded{\getmarking[test][bottom]}}
	{\getmarking[test][top]}
	{\getmarking[test][top] and \getmarking[test][bottom]}
\stopsetups

\setupheadertexts [\setups{test header}]

\starttext

\marking[test] {One}

\input knuth

\marking [test] {Two}

\page

\marking [test] {Three}

\input tufte

\stoptext

How can I make the \doifelse work? I'm not sure I understand the 
keywords top/bottom, first/last, and previous/next.

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: markings and syncing
  2015-10-22 11:51 markings and syncing Thomas A. Schmitz
@ 2015-10-22 15:59 ` Wolfgang Schuster
  2015-10-22 17:59   ` Thomas A. Schmitz
  0 siblings, 1 reply; 3+ messages in thread
From: Wolfgang Schuster @ 2015-10-22 15:59 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

> Thomas A. Schmitz <mailto:thomas.schmitz@uni-bonn.de>
> 22. Oktober 2015 um 13:51
> Hi,
>
> I'm trying to set up a header: if a page contains only one marking, it 
> should display this, if it has more than one, display the first and 
> last. Here's what I tried, unsuccessfully:
>
> \definemarking [test]
>
> \startsetups [test header]
> \doifelse {\expanded{\getmarking[test][top]}} 
> {\expanded{\getmarking[test][bottom]}}
>     {\getmarking[test][top]}
>     {\getmarking[test][top] and \getmarking[test][bottom]}
> \stopsetups
>
> \setupheadertexts [\setups{test header}]
>
> \starttext
>
> \marking[test] {One}
>
> \input knuth
>
> \marking [test] {Two}
>
> \page
>
> \marking [test] {Three}
>
> \input tufte
>
> \stoptext
>
> How can I make the \doifelse work? I'm not sure I understand the 
> keywords top/bottom, first/last, and previous/next.
You have to use the \fetchmark command (which is currently broken but I 
sent a fix to the dev list)
to check the content of both marks because \getmarking isn’t expandable.

\startsetups [test header]
     \doifelse{\fetchmark[test][top]}{\fetchmark[test][bottom]}
         {\getmarking[test][top]}
         {\getmarking[test][top] and \getmarking[test][bottom]}
\stopsetups

Wolfgang

[-- Attachment #1.2: Type: text/html, Size: 2380 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
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: markings and syncing
  2015-10-22 15:59 ` Wolfgang Schuster
@ 2015-10-22 17:59   ` Thomas A. Schmitz
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas A. Schmitz @ 2015-10-22 17:59 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 10/22/2015 05:59 PM, Wolfgang Schuster wrote:
> You have to use the \fetchmark command (which is currently broken but I
> sent a fix to the dev list)
> to check the content of both marks because \getmarking isn’t expandable.
>
> \startsetups [test header]
>      \doifelse{\fetchmark[test][top]}{\fetchmark[test][bottom]}
>          {\getmarking[test][top]}
>          {\getmarking[test][top] and \getmarking[test][bottom]}
> \stopsetups

Thank you, Wolfgang! I'll wait for the next beta (and hope that the 
problem with xml entities will disappear too).

All best

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-10-22 17:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-22 11:51 markings and syncing Thomas A. Schmitz
2015-10-22 15:59 ` Wolfgang Schuster
2015-10-22 17:59   ` Thomas A. Schmitz

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).