Added folgen und Reihen

This commit is contained in:
alexander
2025-11-24 22:34:28 +01:00
parent 23d4bda871
commit ece33cad1b
7 changed files with 118 additions and 3 deletions

View File

@@ -18,6 +18,6 @@
[$5/6pi$], [$150°$], hlMath([$-sqrt(3)/2$], color: hlRed), hlMath([$1/2$], color: hlGreen),
[$pi$], [$180°$], hlMath([$-1$], color: hlRed), hlMath([$0$]),
[$3/2pi$], [$270°$], hlMath([$0$]), hlMath([$-1$], color: hlRed),
[$2pi$], [$360°$], hlMath([$1$], color: hlGreen), hlMath([$0$] mm)
[$2pi$], [$360°$], hlMath([$1$], color: hlGreen), hlMath([$0$])
)
]

View File

@@ -20,6 +20,12 @@
#let hlRed = rgb("#ff6969");
#let hlGreen = rgb("#76ff69");
#let hlHeading(content, color: rgb("#ff69fd")) = box(
content,
outset: 2pt,
fill: color,
)
#let stdBlock(content) = {
block(
stroke: 0.2mm,
@@ -29,6 +35,10 @@
)
}
#let MathAlignLeft(e) = {
align(left, block(e))
}
/* Usage examples:
#blockm("Hello", top: 10pt, bottom: 10pt)
#blockm(#p("Paragraph inside a margin-set block."), left: 12pt, right: 12pt)