mirror of
https://github.com/Zenithsiz/ist-ddrs-lab3.git
synced 2026-02-03 22:23:56 +00:00
26 lines
530 B
Typst
26 lines
530 B
Typst
#let title = "Lab report 3 - Optimization"
|
|
#let degree = "Master's Programme in Communication Networks Engineering"
|
|
#let course = "Performance Evaluation and Dimensioning of Networks and Systems"
|
|
|
|
#let authors = (
|
|
"Filipe Rodrigues - 96735",
|
|
"Ricardo Rodrigues - 96764",
|
|
)
|
|
#let group = "Group 2"
|
|
|
|
/// Displays a figure of code
|
|
#let code_figure(body, ..rest) = {
|
|
figure(
|
|
body,
|
|
kind: "code",
|
|
supplement: "Code",
|
|
..rest,
|
|
)
|
|
}
|
|
|
|
/// Indented paragraph
|
|
#let indent_par(body, indent: 1em) = {
|
|
h(indent)
|
|
body
|
|
}
|