LADRSolutions/main.typ
szdytom 92344c9e7b
section 1B
Signed-off-by: szdytom <szdytom@qq.com>
2025-07-07 20:27:56 +08:00

29 lines
468 B
Typst

#import "styles.typ": project, setup_main_text
#show: project.with("线性代数应该这样学 习题解答")
#let toc = ((
title: [向量空间],
sections: 2,
),)
#[
#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"
}
}
}
]