Scaffold 16:9 PPT directory for future work; drop tracked local README now covered by gitignore only. Co-authored-by: Cursor <cursoragent@cursor.com>
33 lines
664 B
Plaintext
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()
|
|
]
|