mirror of
https://github.com/danbulant/introductionToProgramming
synced 2026-05-19 20:38:36 +00:00
17 lines
No EOL
408 B
Text
17 lines
No EOL
408 B
Text
|
|
#let template(doc) = [
|
|
#set page(height: auto)
|
|
#show link: underline
|
|
#set quote(block: true)
|
|
#doc
|
|
]
|
|
|
|
#let embedClass(name: str, label: none) = {
|
|
show figure: set block(width: 100%)
|
|
show figure: set align(left)
|
|
show figure.caption: set align(center)
|
|
[
|
|
#figure(caption: name, kind: "Class", supplement: [Class], raw(read("../" + name + ".java"), lang:"java", block: true))
|
|
#label
|
|
]
|
|
} |