ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Wolfgang Schuster <wolfgang.schuster.lists@gmail.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>,
	Pablo Rodriguez via ntg-context <ntg-context@ntg.nl>
Cc: Pablo Rodriguez <oinos@gmx.es>
Subject: [NTG-context] Re: imposition: getting to the last page of a booklet
Date: Thu, 7 Mar 2024 16:36:29 +0100	[thread overview]
Message-ID: <6506d576-ca46-539c-e25a-b0c36a14ac1c@gmail.com> (raw)
In-Reply-To: <ce8ab930-4d56-4a30-793b-410ef0e02a1d@gmx.es>

Pablo Rodriguez via ntg-context schrieb am 06.03.2024 um 20:17:
> On 3/6/24 19:50, Wolfgang Schuster wrote:
>>> [...]
>>> Could you write the first line in plain language?
>>
>> Look at the second example of the Lua code in the example below for each
>> command (the first example is your version), the third example is just a
>> condensed version of example 2.
> 
> Many thanks for your extended explanation, Wolfgang.

Here is another solution which uses \ifcase the select a different case 
dependent on the value of the remainder.

\def\beforequadruplenumber#1%
   {\ifcase\numexpr#1;4\relax
      \the\numexpr#1+3\relax % remainder = 0
    \or
      \the\numexpr#1+2\relax % remainder = 1
    \or
      \the\numexpr#1+1\relax % remainder = 2
    \or
      \the\numexpr#1+4\relax % remainder = 3
    \fi}

\def\afterquadruplenumber#1%
   {\ifcase\numexpr#1;4\relax
      \the\numexpr#1+1\relax % remainder = 0
    \or
      \the\numexpr#1+4\relax % remainder = 1
    \or
      \the\numexpr#1+3\relax % remainder = 2
    \or
      \the\numexpr#1+2\relax % remainder = 3
    \fi}


> Now it is clearer to me (although I need some time to learn from it).

When you use \numexpr to perform arithmetic in TeX it is recommended to 
add a final \relax to stop the command from scanning to additional 
values, e.g. in the example below \testone takes value beyond the 
argument because \numexpr hasn't ended yet.

\starttext

\def\testone#1{\the\numexpr #1 + 1 }

\testone{1} + 1

\def\testtwo#1{\the\numexpr #1 + 1 \relax}

\testtwo{1} + 1

\stoptext

Wolfgang
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki     : https://wiki.contextgarden.net
___________________________________________________________________________________

  reply	other threads:[~2024-03-07 15:39 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-23  9:07 [NTG-context] " Michael Guravage
2024-02-24 13:30 ` [NTG-context] " Wolfgang Schuster
2024-02-27 10:13   ` Pablo Rodriguez via ntg-context
2024-02-28 10:56     ` Bruce Horrocks
2024-02-28 11:24       ` Pablo Rodriguez via ntg-context
2024-02-28 18:02         ` Pablo Rodriguez via ntg-context
2024-02-28 18:28           ` Wolfgang Schuster
2024-03-04 19:00             ` Pablo Rodriguez via ntg-context
2024-03-06 18:50               ` Wolfgang Schuster
2024-03-06 19:17                 ` Pablo Rodriguez via ntg-context
2024-03-07 15:36                   ` Wolfgang Schuster [this message]
2024-03-06 20:38                 ` Hans Hagen
2024-03-06 21:06                   ` Wolfgang Schuster

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=6506d576-ca46-539c-e25a-b0c36a14ac1c@gmail.com \
    --to=wolfgang.schuster.lists@gmail.com \
    --cc=ntg-context@ntg.nl \
    --cc=oinos@gmx.es \
    /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).