Files
TMA4135/exercise10/main.typ
2025-10-31 16:44:25 +01:00

44 lines
856 B
Typst

#import "lib.typ"
#let FONT_SIZE = 18pt;
#set page(paper: "a4", margin: (x: 2.6cm, y: 2.8cm), numbering: "1 : 1")
#set par(justify: true, leading: 0.52em)
#set text(font: "FreeSerif", size: FONT_SIZE, lang: "us")
#show math.equation: set text(
font: "Euler Math",
size: (FONT_SIZE * 1.0),
lang: "en",
)
#set heading(numbering: none)
#show heading.where(level: 1): it => {
rect(inset: FONT_SIZE / 2)[#it]
}
#show ref: it => if it.element.func() != heading { it } else {
link(it.target, it.element.body)
}
#lib.title(size: FONT_SIZE)[exercise 10]
these are my solutions to the tenth exercise set of TMA4135.
this document was created using
#link("https://typst.app/")[#text(blue.darken(5%))[typst]].
\
#outline(title: none)
#pagebreak()
#include "problem1.typ"
#include "problem2.typ"
#include "problem3.typ"
#include "problem4.typ"