44 lines
978 B
Markdown
44 lines
978 B
Markdown
# GreLin · Typst 文档模板
|
||
|
||
西安高岭绿能团队内部 Typst 模板库,按文档类型分目录维护,用于融资 BP、data room 等场景。
|
||
|
||
## 目录
|
||
|
||
| 文件夹 | 说明 | 入口文件 |
|
||
|--------|------|----------|
|
||
| [`resume/`](resume/) | 团队简历(双栏中文版) | `cv.typ` |
|
||
| [`feasibility-report/`](feasibility-report/) | 可行性研究报告 | `report.typ` |
|
||
|
||
## 环境要求
|
||
|
||
- [Typst](https://typst.app/) CLI(`typst compile` / `typst watch`)
|
||
|
||
## 快速开始
|
||
|
||
```bash
|
||
# 简历
|
||
cd resume
|
||
typst compile cv.typ
|
||
|
||
# 可行性报告
|
||
cd feasibility-report
|
||
typst compile report.typ
|
||
```
|
||
|
||
## 推送到 Gitea
|
||
|
||
```bash
|
||
cd GreLin
|
||
git init
|
||
git add .
|
||
git commit -m "init: GreLin typst templates"
|
||
git remote add origin <your-gitea-repo-url>
|
||
git push -u origin main
|
||
```
|
||
|
||
## 约定
|
||
|
||
- 每个文档类型独立文件夹,互不混用
|
||
- 品牌色与 HyperLabel `foundationPalette` 保持一致
|
||
- 个人/公司数据写在各模板的 `data/config.typ` 中
|