Create initial thesis directory

This commit is contained in:
2026-03-12 11:01:13 +01:00
parent 9ab7e0bdd0
commit 84772deb5e
3 changed files with 32 additions and 0 deletions
BIN
View File
Binary file not shown.
+8
View File
@@ -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"
)
+24
View File
@@ -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
]
}