grelin_templates/resume
MORRO ed33425ee9 Extend resume template with optional research, publications, and skill groups.
Ignore resume/local for personal configs and keep sample PDF in sync with template defaults.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-25 17:12:20 +08:00
..
assets Refine resume template for conservative audiences with grayscale styling. 2026-06-25 16:22:12 +08:00
data Extend resume template with optional research, publications, and skill groups. 2026-06-25 17:12:20 +08:00
cv.typ Extend resume template with optional research, publications, and skill groups. 2026-06-25 17:12:20 +08:00
README.md Refine resume template for conservative audiences with grayscale styling. 2026-06-25 16:22:12 +08:00
sample.pdf Extend resume template with optional research, publications, and skill groups. 2026-06-25 17:12:20 +08:00

Resume · 团队简历模板

GreLin 双栏中文简历 Typst 模板,用于融资 BP data room 附录。

照片

将证件照放入 assets/profile.jpeg,或在 data/config.typprofile 模块中设置 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 用字符串元组,不要手写 - 列表语法。