LADRSolutions/main.typ
szdytom c66ed32349
section 1C p1-6
Signed-off-by: szdytom <szdytom@qq.com>
2025-07-08 12:42:00 +08:00

29 lines
468 B
Typst

#import "styles.typ": project, setup_main_text
#show: project.with("线性代数应该这样学 习题解答")
#let toc = ((
title: [向量空间],
sections: 3,
),)
#[
#show: setup_main_text
#{
for i in range(0, toc.len()) {
pagebreak(weak: true)
let chapter = toc.at(i)
heading(chapter.title, level: 1)
for j in range(0, chapter.sections) {
if j > 0 {
pagebreak(weak: true)
}
include "sections/" + numbering("1A", i + 1, j + 1) + ".typ"
}
}
}
]