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> |
||
|---|---|---|
| .. | ||
| assets | ||
| data | ||
| cv.typ | ||
| README.md | ||
| sample.pdf | ||
Resume · 团队简历模板
GreLin 双栏中文简历 Typst 模板,用于融资 BP data room 附录。
照片
将证件照放入 assets/profile.jpeg,或在 data/config.typ 的 profile 模块中设置 photo-path。
编辑示例(只改 config.typ)
#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 用字符串元组,不要手写 - 列表语法。