If I have the following type document:
#set heading(numbering: "1.1")
= Heading 1
== Heading 2
=== Heading 3
I get the following PDF:
1. Heading 1
1.1 Heading 2
1.1.1 Heading 3
However, I would like only the first and second order headings to be numbered, but not the subordinate headings:
1. Heading 1
1.1 Heading 2
Heading 3