ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Denis Maier via ntg-context <ntg-context@ntg.nl>
To: <ntg-context@ntg.nl>
Cc: denis.maier@unibe.ch
Subject: Re: process list items differently depending on position in list
Date: Mon, 2 May 2022 10:09:09 +0000	[thread overview]
Message-ID: <13fbdf32324b4fcba8f2a08ae0322240@unibe.ch> (raw)
In-Reply-To: <7c664cfc8faa4c34bc35a26623129118@unibe.ch>


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

Ok, in lua it's indeed simple:

\startluacode
list = {"foo", "bar", "baz"}
\stopluacode

\starttext

\startluacode
for i, v in ipairs(list) do
    if i == #list then
        tex.print("last:")
        tex.print(v)
    elseif i == 1 then
        tex.print("first:")
        tex.print(v)
    else
        tex.print("in between:")
        tex.print(v)
    end
end
\stopluacode

\stoptext

But, it'd still love to hear whether there is a solution on the tex side.

Denis

Von: Maier, Denis Christian (UB)
Gesendet: Montag, 2. Mai 2022 09:15
An: 'mailing list for ConTeXt users' <ntg-context@ntg.nl>
Betreff: process list items differently depending on position in list

Hi,

I need to process a comma separated list, and adapt the formatting according to the position of an item in the list (example below). Expected output would be:
{\bf foo
}, {\em bar} and baz.

Is that possible? Can I somehow get the position of an item in the list? (My understanding is that \processcommalist and \processcommacommand apply a command to each list item, but there is no such thing as <position in the list>... I hope I'm wrong here.)

Or is that something where using Lua would be a better choice?

Best,
Denis

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\define[1]\command
  {#1}

\define\somelist
  {foo, bar, baz}

\starttext

  \processcommacommand
    [\somelist]
    \command

\stoptext
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


[-- Attachment #1.2: Type: text/html, Size: 6112 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

  reply	other threads:[~2022-05-02 10:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-02  7:14 Denis Maier via ntg-context
2022-05-02 10:09 ` Denis Maier via ntg-context [this message]
2022-05-02 10:33   ` Hans Hagen via ntg-context
2022-05-02 11:50     ` Denis Maier via ntg-context

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=13fbdf32324b4fcba8f2a08ae0322240@unibe.ch \
    --to=ntg-context@ntg.nl \
    --cc=denis.maier@unibe.ch \
    /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).