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

@@ -1,3 +1,5 @@
#import "lib/common_rewrite.typ" : *
#set page(
paper: "a4",
margin: (
@@ -50,7 +52,6 @@
#let colorAbleitung = color.hsl(356.92deg, 92.13%, 75.1%)
#let colorIntegral = color.hsl(34.87deg, 92.13%, 75.1%)
#let bgBlock(body, fill: color) = block(body, fill:fill.lighten(80%), width: 100%, inset: (bottom: 2mm))
#columns(4, gutter: 2mm)[
#bgBlock(fill: colorAllgemein)[

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
)
}