grelin_templates/resume-career/cv.typ
MORRO 769decd445 Add resume-career template and migrate resume to resume-bp.
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>
2026-06-26 23:19:37 +08:00

58 lines
1.1 KiB
Plaintext
Raw 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.

#import "data/config.typ": *
#import "data/theme.typ": *
#import "data/layout.typ": *
#set page(
paper: "a4",
margin: page-margin,
fill: color-page,
)
#set text(
font: body-font,
size: size-body,
weight: weight-normal,
fill: color-text,
lang: "zh",
)
#set par(leading: leading-body, spacing: space-none, justify: true)
// 页眉单独一行 grid左右栏等高短侧自动补白
#grid(
columns: (main-column, sidebar-column),
column-gutter: space-column-gap,
align: (top, top),
profile-block(),
contact-block(),
)
#v(space-header-bottom)
// 正文区:「工作经历 / 专业技能」等同水平线起排
#grid(
columns: (main-column, sidebar-column),
column-gutter: space-column-gap,
align: (top, top),
[
#section-title("工作经历", above: space-none)
#experiences-block()
],
[
#sidebar-photo()
#section-title("专业技能", above: space-none)
#skills-block()
#section-title("项目经历")
#sidebar-projects-block()
#section-title("教育背景")
#sidebar-education-block()
#if interests != "" [
#section-title("兴趣爱好")
#interests-block()
]
],
)