Moved Math macros to seperte file
All checks were successful
Build Typst PDFs (Docker) / build-typst (push) Successful in 20s
All checks were successful
Build Typst PDFs (Docker) / build-typst (push) Successful in 20s
This commit is contained in:
@@ -1,9 +1,7 @@
|
|||||||
#import "../lib/common_rewrite.typ" : *
|
|
||||||
#import "@preview/mannot:0.3.1"
|
#import "@preview/mannot:0.3.1"
|
||||||
|
|
||||||
#show math.integral: it => math.limits(math.integral)
|
#import "../lib/common_rewrite.typ" : *
|
||||||
#show math.sum: it => math.limits(math.sum)
|
#import "../lib/mathExpressions.typ" : *
|
||||||
#let lim = $limits("lim")$
|
|
||||||
|
|
||||||
#set text(7.5pt)
|
#set text(7.5pt)
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
#import "../lib/styles.typ" : *
|
#import "../lib/styles.typ" : *
|
||||||
#import "../lib/common_rewrite.typ" : *
|
#import "../lib/common_rewrite.typ" : *
|
||||||
|
#import "../lib/mathExpressions.typ" : *
|
||||||
|
|
||||||
#set page(
|
#set page(
|
||||||
paper: "a4",
|
paper: "a4",
|
||||||
@@ -32,16 +33,6 @@
|
|||||||
#let colorAbbildungen = color.hsl(356.92deg, 92.13%, 75.1%)
|
#let colorAbbildungen = color.hsl(356.92deg, 92.13%, 75.1%)
|
||||||
#let colorGruppen = color.hsl(34.87deg, 92.13%, 75.1%)
|
#let colorGruppen = color.hsl(34.87deg, 92.13%, 75.1%)
|
||||||
|
|
||||||
// Math macors
|
|
||||||
#let kern(x) = $op("kern")(#x)$
|
|
||||||
#let alg(x) = $op("alg")(#x)$
|
|
||||||
#let geo(x) = $op("geo")(#x)$
|
|
||||||
#let spann(x) = $op("spann")(#x)$
|
|
||||||
#let Bild(x) = $op("Bild")(#x)$
|
|
||||||
#let Rang(x) = $op("Rang")(#x)$
|
|
||||||
#let Eig(x) = $op("Eig")(#x)$
|
|
||||||
|
|
||||||
#let ip(x, y) = $lr(angle.l #x, #y angle.r)$
|
|
||||||
|
|
||||||
#let SeperatorLine = line(length: 100%, stroke: (paint: black, thickness: 0.3mm))
|
#let SeperatorLine = line(length: 100%, stroke: (paint: black, thickness: 0.3mm))
|
||||||
#let MathAlignLeft(e) = {
|
#let MathAlignLeft(e) = {
|
||||||
|
|||||||
14
src/lib/mathExpressions.typ
Normal file
14
src/lib/mathExpressions.typ
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
// Math macors
|
||||||
|
#let kern(x) = $op("kern")(#x)$
|
||||||
|
#let alg(x) = $op("alg")(#x)$
|
||||||
|
#let geo(x) = $op("geo")(#x)$
|
||||||
|
#let spann(x) = $op("spann")(#x)$
|
||||||
|
#let Bild(x) = $op("Bild")(#x)$
|
||||||
|
#let Rang(x) = $op("Rang")(#x)$
|
||||||
|
#let Eig(x) = $op("Eig")(#x)$
|
||||||
|
|
||||||
|
#let ip(x, y) = $lr(angle.l #x, #y angle.r)$
|
||||||
|
|
||||||
|
#show math.integral: it => math.limits(math.integral)
|
||||||
|
#show math.sum: it => math.limits(math.sum)
|
||||||
|
#let lim = $limits("lim")$
|
||||||
Reference in New Issue
Block a user