Let’s say I have this:
#set heading(numbering: "1.")
/ @discussion: We will have a discussion.
= Discussion <discussion>
The way this renders is:
Section 1 We will have a discussion.
1. Discussion
As you can see, Typst thinks my first-level headings are sections, not chapters.
heading.supplement
will sort of work, but it will also turn lower level headings to chapters as well.
#set heading(numbering: "1.", supplement: [Chapter])
/ @discussion: We will have a discussion.
= Discussion <discussion>
Discussion will continue in @sub.
== Subtopic <sub>
The way this renders is:
Chapter 1 We will have a discussion.
1. Discussion
Discussion will continue in Chapter 1.1.
1.1 Subtopic
As you can see, now everything is a chapter.
How do I convince Typst to treat only my top-level headers as chapters?