// Smoke test — exercises the per-target presentation `config` override path // (ADR-0009). Here the engineering-file-supplied `config.numbering.heading` // overrides the framework-default heading numbering. The patterns happen to // match the correct per-level scheme (level-1 `一、`, level-2 `1.1`), proving // the override is wired AND yields correct (NOT `二、一、`) output. #import "../lib.typ": display #import "smoke-parts.typ": info, parts #display( info: info, target: "teacher", parts: parts, config: (numbering: (heading: ("{1:一}、", "{1:1}.{2:1}"))), )