diff --git a/Thesis/main.pdf b/Thesis/main.pdf new file mode 100644 index 0000000..7e744ad Binary files /dev/null and b/Thesis/main.pdf differ diff --git a/Thesis/main.typ b/Thesis/main.typ new file mode 100644 index 0000000..02ff8b8 --- /dev/null +++ b/Thesis/main.typ @@ -0,0 +1,8 @@ +#import "title-page.typ": title-page + +#title-page( + title: "Implementacja aplikacji do współtworzenia notatek z wykorzystaniem technologii peer to peer", + author: "Oskar Marcin Chybowski", + supervisor: "dr inż. Mirosław Mościcki", + year: "2026" +) diff --git a/Thesis/title-page.typ b/Thesis/title-page.typ new file mode 100644 index 0000000..ce6d843 --- /dev/null +++ b/Thesis/title-page.typ @@ -0,0 +1,24 @@ +#let title-page( + title: "", + author: "", + supervisor: "", + year: "", + faculty: "Wydział Informatyki", + university: "Zachodniopomorski Uniwersytet Technologiczny w Szczecinie" +) = { + page(footer: none, header: none)[ + #set align(center + horizon) + #university \ + #faculty \ + #v(2cm) + #text(size: 16pt, weight: "bold")[Praca inżynierska] \ + #v(1cm) + #text(size: 14pt, title) \ + #v(3cm) + #author \ + #v(1cm) + Promotor: #supervisor \ + #v(2cm) + Szczecin #year + ] +}