This commit is contained in:
2025-04-24 13:39:23 +02:00
parent 4307eef4d5
commit a1bb955005
38 changed files with 89 additions and 12568 deletions

View File

@@ -2,23 +2,54 @@
// What is this for?
// #show: thmrules.with(qed-symbol: $square$)
// Use this to format the size: inset: (x: 1.2em, top: 1em, bottom: 1em)
// TODO: fix the alignment
// TODO: make the numbering good dnd manual and insert the title at the top (from the first line)
// TODO: Set this up so that it looks good
#let theorem = thmbox("theorem", "Theorem", fill: rgb("#eeffee")).with(numbering: "1.1") //tem
#let theorem = thmbox( //tem
"theorem",
"Theorem",
fill: rgb("#eeffdd")
).with(
numbering: none
)
#let corollary = thmplain( //cor
"corollary",
"Corollary",
base: "theorem",
titlefmt: strong
)
#let definition = thmbox("definition", "Definition", inset: (x: 1.2em, top: 1em)) //def
#let example = thmplain("example", "Example").with(numbering: none) //exa
#let proof = thmproof("proof", "Proof") //pro
#let remark = thmbox("remark", "Remark") //rem
#let axiom = thmbox("axiom", "Axiom") //axi
#let lemma = thmbox("lemma", "Lemma") //lem
// Add a note
#let note = thmbox("note", "Note") //nte
#let definition = thmbox( //def
"definition",
"Definition",
fill: rgb("#eedebb")
)
#let example = thmplain( //exa
"example",
"Example"
).with(
numbering: none
)
#let proof = thmproof( //pro
"proof",
"Proof"
)
#let remark = thmbox( //rem
"remark",
"Remark"
)
#let axiom = thmbox( //axi
"axiom",
"Axiom"
)
#let lemma = thmbox( //lem
"lemma",
"Lemma",
fill: rgb("#cddfff")
)
#let note = thmbox( //nte
"note",
"Note"
)