9 Jan
2022
9 Jan
'22
6:15 p.m.
On 1/9/22 5:25 PM, Michael Urban via ntg-context wrote:
I want to put a book title above the Chapter title for the first chapter of a book. I suppose that this can be accomplished with a 'before=' clause that checks to see if it is the first chapter... but how do I look at the chapter number in order to set up the conditional?
Hi MIchael, this might do the trick: \starttext \dorecurse{5} {\chapter{Chapter \structurenumber} \dorecurse{5} {\section{Section \structurenumber} \doifelse{\somenamedheadnumber{chapter}{current}}{1} {This is the first chapter.} {This is not the first chapter.} }} \stoptext Just in case it might help, Pablo