grelin_templates/resume
MORRO b8eed931ac Add Markdown-driven feasibility report with Typst styling pipeline.
Introduce cmarker/codly-based MD workflow, brutalist cover layout, and shared brand tokens so colleagues can author reports in report.md while the template handles PDF output.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-23 19:29:48 +08:00
..
assets Complete GreLin resume template with sample PDF and shared brand colors. 2026-06-23 14:39:21 +08:00
data Finalize resume template with modular config and layout polish. 2026-06-23 16:30:26 +08:00
cv.typ Finalize resume template with modular config and layout polish. 2026-06-23 16:30:26 +08:00
README.md Finalize resume template with modular config and layout polish. 2026-06-23 16:30:26 +08:00
sample.pdf Add Markdown-driven feasibility report with Typst styling pipeline. 2026-06-23 19:29:48 +08:00

Resume · 团队简历模板

GreLin 双栏中文简历 Typst 模板HyperLabel 配色),用于融资 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 = (
  abilities: (
    (name: "全栈开发", level: 0.9),
  ),
  language: (
    name: "英语",
    level: 0.75,
    label: "读写",
  ),
  tags: ("Rust", "Python"),
  notes: (),  // 可选:侧栏技能补充列表
)

#let education = (
  (
    degree: "软件工程 / 硕士",
    school: "西北大学",
    period: "2022  2025",
    location: "西安",
    notes: "",  // 可选GPA、主修课程等一段说明
  ),
)

#let awards = ()  // 可选:主栏获奖经历

#let experiences = (
  (
    company: "某某科技",
    role: "工程师",
    bullets: ("职责……", "动作……", "结果……"),
  ),
)

bullets 用字符串元组,不要手写 - 列表语法。