grelin_templates/resume-bp/README.md
MORRO 769decd445 Add resume-career template and migrate resume to resume-bp.
Introduce one-page career resume alongside the full BP resume, unify brand color across templates, and update monorepo docs and gitignore.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-26 23:19:37 +08:00

54 lines
1.1 KiB
Markdown
Raw Permalink 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.

# Resume BP · 融资团队简历
GreLin 双栏中文简历 Typst 模板,用于融资 BP data room 附录。内容偏完整,含证件照、详细经历与可选研究成果。
入口:`cv.typ` · 内容编辑:`data/config.typ`
## 照片
将证件照放入 `assets/profile.jpeg`,或在 `data/config.typ``profile` 模块中设置 `photo-path`
### 编辑示例(只改 `config.typ`
```typst
#let profile = (
name: "姓名",
title: "职位",
summary: "个人简介……",
photo-path: "../assets/profile.jpeg",
)
#let contact = (
address: "城市",
phone: "手机号",
email: "邮箱",
website: "https://example.com",
website-label: "example.com",
)
#let skills = (
tags: ("Rust", "Python"),
notes: (),
)
#let education = (
(
degree: "软件工程 / 硕士",
school: "西北大学",
period: "2022 2025",
location: "西安",
notes: "",
),
)
#let experiences = (
(
company: "某某科技",
role: "工程师",
bullets: ("职责……", "动作……", "结果……"),
),
)
```
`bullets` 用字符串元组,不要手写 `-` 列表语法。