asd
All checks were successful
Build Typst PDFs (Docker) / build-typst (push) Successful in 18s

This commit is contained in:
alexander
2025-12-21 19:51:38 +01:00
parent 701b3ec932
commit eff0c7da6b
2 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
#let bgBlock(body, fill: color) = block(body, fill:fill.lighten(80%), width: 100%, inset: (bottom: 2mm))
#let SeperatorLine = line(length: 100%, stroke: (paint: black, thickness: 0.3mm))
#let MathAlignLeft(e) = {
align(left, block(e))
}
#let subHeading(it: content, fill: color) = {
box(
align(
top+center,
text(
it,
size: 10pt,
weight: "regular",
style: "italic",
)
),
fill: fill,
width: 100%,
inset: 1mm,
height: auto
)
}