mirror of
https://github.com/szdytom/LADRSolutions.git
synced 2025-10-19 16:30:16 +00:00
26 lines
533 B
Typst
26 lines
533 B
Typst
#import "styles.typ": zhfont_sans
|
|
#import "color.typ": text_color_set, theme_color_set
|
|
|
|
#{
|
|
// Book Cover
|
|
set align(right)
|
|
set text(font: zhfont_sans)
|
|
v(5fr)
|
|
{
|
|
set text(fill: text_color_set.at("100"), weight: "semibold")
|
|
stack(
|
|
dir: ttb,
|
|
spacing: 15pt,
|
|
text([线性代数应该这样学], 22pt),
|
|
text([习题解答], 33pt),
|
|
box(width: 10 * 22pt, {
|
|
line(end: (100%, 0%), stroke: 3pt + theme_color_set.at("100"))
|
|
line(end: (38.2%, 0%), stroke: 3pt + text_color_set.at("100"))
|
|
})
|
|
)
|
|
}
|
|
v(2fr)
|
|
|
|
pagebreak(weak: true)
|
|
|
|
} |