mirror of
https://github.com/Zenithsiz/ist-ddrs-lab2
synced 2026-02-03 22:23:55 +00:00
33 lines
676 B
Typst
33 lines
676 B
Typst
#import "util.typ": course, title, degree, authors, group
|
|
|
|
#align(center)[
|
|
#image("/images/tecnico-logo.png", width:70%)
|
|
#v(4em)
|
|
]
|
|
|
|
#align(center)[
|
|
#block(text(weight: 600, 2em, course))
|
|
#v(8em, weak: true)
|
|
|
|
#block(text(weight: 600, 1.75em, title))
|
|
#v(3em, weak: true)
|
|
|
|
#block(text(weight: 600, 1em, degree))
|
|
#v(4em, weak: true)
|
|
|
|
#pad(
|
|
top: 0.5em,
|
|
bottom: 0.5em,
|
|
x: 2em,
|
|
grid(
|
|
columns: (1fr,) * calc.min(3, authors.len()),
|
|
gutter: 1em,
|
|
..authors.map(author => text(weight: 600, author)),
|
|
),
|
|
)
|
|
#v(2em, weak: true)
|
|
|
|
#block(text(weight: 600, 1em, group))
|
|
#v(1em, weak: true)
|
|
]
|