grelin_templates/resume/README.md
MORRO ab0f73cbd6 Refine resume template for conservative audiences with grayscale styling.
Remove default ability bars, widen margins and section spacing, fix entry layout, and refresh sample PDF for government-facing delivery.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-25 16:22:12 +08:00

63 lines
1.4 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 · 团队简历模板
GreLin 双栏中文简历 Typst 模板,用于融资 BP data room 附录。
## 照片
将证件照放入 `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: (), // 可选:侧栏技能补充列表
// 可选:能力进度条(有数据时自动显示「能力」子区块)
// abilities: (
// (name: "全栈开发", level: 0.9),
// ),
// language: (
// name: "英语",
// level: 0.75,
// label: "读写",
// ),
)
#let education = (
(
degree: "软件工程 / 硕士",
school: "西北大学",
period: "2022 2025",
location: "西安",
notes: "", // 可选GPA、主修课程等一段说明
),
)
#let awards = () // 可选:主栏获奖经历
#let experiences = (
(
company: "某某科技",
role: "工程师",
bullets: ("职责……", "动作……", "结果……"),
),
)
```
`bullets` 用字符串元组,不要手写 `-` 列表语法。