mirror of
https://github.com/Zenithsiz/ist-semb-proj1.git
synced 2026-02-04 02:08:40 +00:00
20 lines
447 B
Typst
20 lines
447 B
Typst
#let title = [MicroProject 1: #linebreak() Implementation of the Blinking sample in ESP32]
|
|
#let course = [Embedded Systems]
|
|
|
|
#let authors = ([Filipe Rodrigues - 96735],)
|
|
|
|
/// Displays a figure of code
|
|
#let code_figure(body, ..rest) = {
|
|
figure(
|
|
body,
|
|
kind: "code",
|
|
supplement: "Code",
|
|
..rest,
|
|
)
|
|
}
|
|
|
|
/// Displays a link to a file, relative to `src`.
|
|
#let src_link(rel_link) = {
|
|
link("file://./src/" + rel_link, raw(rel_link))
|
|
}
|