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>
54 lines
1.1 KiB
Markdown
54 lines
1.1 KiB
Markdown
# 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` 用字符串元组,不要手写 `-` 列表语法。
|