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>,
	Joel via ntg-context <ntg-context@ntg.nl>
Subject: [NTG-context] Re: How to set section title based on section content?
Date: Sat, 9 Mar 2024 16:15:06 +0100	[thread overview]
Message-ID: <6814b0f1-c173-fca1-7def-8353f95986b4@gmail.com> (raw)
In-Reply-To: <1422901094.1250385.1709996503721@mail.yahoo.com>

Joel via ntg-context schrieb am 09.03.2024 um 16:01:
> How to set section title based on section content?
> 
> I have a document that has some structures like this:
> 
> \starttext
> 
> \startsection[title={Animals}]
> 
> \event{\input knuth }
> 
> \stopsection
> 
> \startsection[title={Books}]
> 
> \event{\input knuth }
> 
> \stopsection
> 
> \stoptext
> 
> The event macro runs a bunch of conditionals, deciding which content to 
> place inside the section. It places any one of neary 200 possible 
> different types of content there.
> 
> Sadly when I wrote the code, I thought generic titles would be okay. Now 
> I realize I need to be more specific, giving titles that match the 
> content inside. I could move the section titles inside the \event macro, 
> but it means rewriting ~200 other macros.
> 
> In other words, how do I define a section title by defining it somewhere 
> in the content of the \event macro?
> 
> \starttext
> 
> \startsection[\whatistitle] %<-- would display "Neon Tetras"
> 
> \event{\thetitleis{Neon Tetras}\input knuth }
> 
> \stopsection
> 
> \startsection[\whatistitle] %<-- would display "Detective Stories"
> 
> \event{\thetitleis{Detective Stories}\input knuth }
> 
> \stopsection
> 
> \stoptext

When each section contains nothing except the \event command I would 
remove the section titles from the document itself and place them as 
part of the \event command.

\define[1]\Event
   {\startsection[title={#1}]
    \input{knuth}
    \stopsection}

\starttext

\Event{Neon Tetras}

\Event{Detective Stories}

\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-09 15:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1422901094.1250385.1709996503721.ref@mail.yahoo.com>
2024-03-09 15:01 ` [NTG-context] " Joel via ntg-context
2024-03-09 15:15   ` Wolfgang Schuster [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=6814b0f1-c173-fca1-7def-8353f95986b4@gmail.com \
    --to=wolfgang.schuster.lists@gmail.com \
    --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).