grelin_templates/presentation/deck.typ
MORRO 91303740b8 Add presentation template scaffold and remove resume-career local README.
Scaffold 16:9 PPT directory for future work; drop tracked local README now covered by gitignore only.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-26 23:24:10 +08:00

33 lines
664 B
Plaintext

#import "data/config.typ": *
#import "data/theme.typ": *
#set page(
paper: "presentation-16-9",
margin: slide-margin,
fill: color-page,
)
#set text(
font: body-font,
size: size-body,
fill: color-text,
lang: "zh",
)
#set par(leading: leading-body, justify: false)
#align(center + horizon)[
#text(font: heading-font, size: size-title, weight: "bold", fill: color-primary)[#meta.title]
#v(0.8em)
#text(size: size-subtitle, fill: color-text-light)[#meta.subtitle]
]
#pagebreak()
#for slide in slides [
#text(font: heading-font, size: size-section, weight: "bold", fill: color-heading)[#slide.title]
#v(1em)
#slide.body
#pagebreak()
]