diff --git a/exercise7/lib.typ b/exercise7/lib.typ new file mode 100644 index 0000000..8351ec2 --- /dev/null +++ b/exercise7/lib.typ @@ -0,0 +1,3 @@ +#let title(cont, size: 18pt) = align(center)[ + #text(size: size * 2, weight: "bold")[#underline[#cont]] +] diff --git a/exercise7/main.pdf b/exercise7/main.pdf new file mode 100644 index 0000000..be11ac8 Binary files /dev/null and b/exercise7/main.pdf differ diff --git a/exercise7/main.typ b/exercise7/main.typ new file mode 100644 index 0000000..9805d1c --- /dev/null +++ b/exercise7/main.typ @@ -0,0 +1,37 @@ +#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] +} + +these are my solutions to the seventh exercise set of TMA4135. + +this document was created using +#link("https://typst.app/")[#text(blue.darken(5%))[typst]]. + +#lib.title(size: FONT_SIZE)[exercise 7] + +\ + +#outline(title: none) + +#pagebreak() + += problem 1 + +#include "problem1.typ" + +