25 lines
895 B
Typst
25 lines
895 B
Typst
#import "/metadata.typ": *
|
|
#pagebreak()
|
|
|
|
#let deadline(name, date) = {(
|
|
date.display("[day].[month]"),
|
|
name,
|
|
)}
|
|
|
|
= Deadline <sec:spec:deadline>
|
|
|
|
The following dates serves as deadlines for the project.
|
|
#figure(
|
|
table(
|
|
columns: (auto, auto),
|
|
[*Date*],[*Purpose*],
|
|
..deadline("Specs validation", date.specification-submission),
|
|
..deadline("Ordering of components", date.ordering-components),
|
|
..deadline("First environmental data stored in the database", date.first-environmental-data-in-db),
|
|
..deadline("Mid-term presentation (including prototype demo)", date.mid-term-presentation),
|
|
..deadline("Full data retrieval, forecasting and display", date.objective-completed),
|
|
..deadline("Project report submission", date.submission),
|
|
..deadline("Project defence", date.defence),
|
|
..deadline("Project presentation in front of other groups", date.pitch),
|
|
)
|
|
) |