ddrs-lab3/typst/util.typ
2024-01-06 16:44:30 +00:00

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
}