I have a master document with several subdocuments as chapters. The first subdocument is the introduction, without any chapter number (let’s call it chapter 0). The second subdocument is chapter 1, the third chapter 2, and so on.
In the master document, I have the following requirements for the headers:
- the first page of each chapter (which corresponds to a right page): no header
- the second and all other left pages of each chapter: header with the book title
- the third and all other right pages of each chapter: header with a subset of the chapter name (as it can be too long)
For the moment, I have 3 page styles, ChapterFirstPage, ChapterLeftPage and ChapterRightPage. With this, I manage to fulfill almost all requirements, except the last. Right now, the header of the third and all other right pages contains the name of each chapter. But I need sometimes to shorten it. Therefore, I tried to replace what is currently a field containing the chapter name, by a shorten version of the chapter name that I manually enter, but then all remaining pages with the same style have the same header, even if they correspond to different chapters.
Do you have any idea how to do fix this?
ps: I tried to create as many ChapterPageRight styles as there are chapters, but as they are right page, they need to be followed by the same ChapterPageLeft, which itself needs to be followed by a right-page style…