Introduce tech-report/ with cover page, custom TOC, and summary flow; add travel-plan/ for trip planning; update README, gitignore, and brand colors. Co-authored-by: Cursor <cursoragent@cursor.com>
33 lines
763 B
Plaintext
33 lines
763 B
Plaintext
#import "@preview/glossarium:0.5.10": make-glossary, register-glossary, print-glossary, gls-long, gls-short
|
||
#import "theme.typ": *
|
||
|
||
#let glossary-entries = (
|
||
(
|
||
key: "hsi",
|
||
short: "HSI",
|
||
long: "高光谱成像",
|
||
description: "Hyperspectral Imaging,获取矿石连续波段光谱信息。",
|
||
),
|
||
(
|
||
key: "onnx",
|
||
short: "ONNX",
|
||
long: "开放神经网络交换格式",
|
||
description: "Open Neural Network Exchange,用于跨平台模型推理部署。",
|
||
),
|
||
(
|
||
key: "as-ratio",
|
||
short: "A/S",
|
||
long: "铝硅比",
|
||
description: "精矿品质评价的关键指标之一。",
|
||
),
|
||
)
|
||
|
||
#let init-glossary(doc) = {
|
||
show: make-glossary
|
||
doc
|
||
}
|
||
|
||
#let register-report-glossary() = {
|
||
register-glossary(glossary-entries)
|
||
}
|