grelin_templates/tech-report/data/glossary.typ
MORRO d83e6a99a9 Add tech-report and travel-plan templates, replacing feasibility.
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>
2026-07-08 13:56:22 +08:00

33 lines
763 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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)
}