21 lines
378 B
Typst
21 lines
378 B
Typst
#let include-offset(what) = context {
|
|
let current-offset = heading.offset
|
|
set heading(offset: current-offset + 1)
|
|
include what
|
|
}
|
|
|
|
#let quote-block(width: 10cm, who, what) = {
|
|
set par(justify: false)
|
|
align(
|
|
right,
|
|
block(
|
|
width: width,
|
|
inset: (bottom: 1cm),
|
|
quote(
|
|
attribution: who,
|
|
block: true,
|
|
what
|
|
)
|
|
)
|
|
)
|
|
} |