100 lines
2.2 KiB
Typst
100 lines
2.2 KiB
Typst
#import "/metadata.typ": *
|
|
#import "/resources/slides.typ": *
|
|
#show:make-glossary
|
|
|
|
#let HANDOUT = true
|
|
#let NOTES = false
|
|
|
|
#show: metropolis-theme.with(
|
|
aspect-ratio: "16-9",
|
|
config-info(
|
|
title: title_style(doc.title),
|
|
subtitle: doc.subtitle,
|
|
author: enumerating-authors(items: doc.author, multiline: false ),
|
|
date: date.defence,
|
|
institution: school.name,
|
|
),
|
|
footer: self => [#self.info.institution],
|
|
..get-config(),
|
|
config-common(
|
|
handout: HANDOUT,
|
|
show-notes-on-second-screen: if NOTES {right} else {none}
|
|
)
|
|
)
|
|
#set text(region: "gb")
|
|
|
|
#show: myglobals
|
|
|
|
#title-slide()
|
|
|
|
// considering these slides complexity, everything is done here, without dedicated files for each slide
|
|
// To anyone that may be concerned : this is NOT done with ill intents but only as convenience
|
|
|
|
// slide 1 -> CO2 ladder
|
|
/*
|
|
Plan : 1) introduction to CO2 scale by landsgemeinde
|
|
2) Rough description of ladder (1400, 2000)
|
|
*/
|
|
|
|
#let sep(body, width: 6em, height: 1.6em) = {
|
|
set text(weight: "bold", font: "Roboto")
|
|
place(
|
|
bottom + center,
|
|
dy: height / 2,
|
|
box(
|
|
fill: white,
|
|
height: height,
|
|
width: width,
|
|
stroke: 0.5pt,
|
|
radius: 5pt,
|
|
align(
|
|
center + horizon,
|
|
body
|
|
)
|
|
)
|
|
)
|
|
}
|
|
|
|
#figure(
|
|
table(
|
|
columns: (1fr,), rows: (1fr),
|
|
align: center,
|
|
inset: 0pt,
|
|
|
|
table.cell(fill:rgb("#ff5443"))[
|
|
Really bad air quality #sep[2000 ppm]
|
|
],
|
|
|
|
table.cell(fill:rgb("ffea62"))[
|
|
Bad air quality #sep[1400 ppm]
|
|
],
|
|
|
|
table.cell(fill:rgb("01ff70"))[
|
|
Good air quality #sep[400 ppm]
|
|
]
|
|
),
|
|
)<tab:co2_scale>
|
|
|
|
// slide 2 -> Simaria
|
|
/*
|
|
Plan : 1) Confederation has commanded Simaria
|
|
2) But no one knows about it thus nobody uses it
|
|
*/
|
|
#figure(
|
|
table(
|
|
columns: (0.3fr, 0.3fr),
|
|
align: center,
|
|
stroke: none,
|
|
image("../../resources/img/Logo_RGB_farbig_EN_positiv.svg", width: 100%),
|
|
image("../../resources/img/simaria_logo.png")
|
|
),
|
|
)
|
|
|
|
|
|
// slide 3 -> project architecture (including forecasting)
|
|
/*
|
|
Plan : 1) Describe project architecture as it was initially intended (including teams notification, forecasting and recommended opening duration)
|
|
*/
|
|
#figure(
|
|
image("../../resources/img/PI-top-level.drawio.png"),
|
|
) |