diff --git a/content/acknowledgement.typ b/content/acknowledgement.typ new file mode 100644 index 0000000..8f68fff --- /dev/null +++ b/content/acknowledgement.typ @@ -0,0 +1,7 @@ +First, I'd like to thank coffee for fueling my brain cells and making this thesis possible. + +A big shoutout to my advisor for your patience and for not laughing (too hard) at my wild ideas. + +To my family, your snack supplies and constant reminders to "just finish it already" were invaluable. + +Finally, to my pet, your keyboard sit-ins ensured I took breaks, whether I wanted to or not. \ No newline at end of file diff --git a/content/transparency_ai_tools.typ b/content/transparency_ai_tools.typ new file mode 100644 index 0000000..3345e44 --- /dev/null +++ b/content/transparency_ai_tools.typ @@ -0,0 +1,7 @@ +#import "/utils/todo.typ": TODO + +#TODO[ + Change this paragraph to reflect the tools you used in your thesis +] + +In preparing this thesis, I utilized Grammarly for grammar and style correction across the Abstract, Introduction, and Conclusion sections, ensuring clarity and coherence in my writing. I used DeepL to enhance language quality and translate parts of the Literature Review. I used ChatGPT to generate initial drafts and expand on ideas in the Introduction and Discussion sections, providing valuable suggestions and examples. Additionally, I used GitHub Copilot to generate code snippets for the developed functionality and code snippets in the Methodology section. \ No newline at end of file diff --git a/layout/acknowledgement.typ b/layout/acknowledgement.typ index c64df9e..807b563 100644 --- a/layout/acknowledgement.typ +++ b/layout/acknowledgement.typ @@ -1,4 +1,4 @@ -#let acknowledgement() = { +#let acknowledgement(body) = { set page( margin: (left: 30mm, right: 30mm, top: 40mm, bottom: 40mm), numbering: none, @@ -20,4 +20,6 @@ // --- Acknowledgements --- align(left, text(font: sans-font, 2em, weight: 700,"Acknowledgements")) v(15mm) + + body } \ No newline at end of file diff --git a/layout/proposal_template.typ b/layout/proposal_template.typ index 469c1d7..4b2937b 100644 --- a/layout/proposal_template.typ +++ b/layout/proposal_template.typ @@ -1,4 +1,5 @@ #import "/layout/titlepage.typ": * +#import "/layout/transparency_ai_tools.typ": transparency_ai_tools as transparency_ai_tools_layout #import "/utils/print_page_break.typ": * // The project function defines how your document looks. @@ -14,6 +15,7 @@ author: "", startDate: datetime, submissionDate: datetime, + transparency_ai_tools: "", is_print: false, body, ) = { @@ -74,4 +76,6 @@ pagebreak() bibliography("/thesis.bib") + pagebreak() + transparency_ai_tools_layout(transparency_ai_tools) } diff --git a/layout/thesis_template.typ b/layout/thesis_template.typ index 8f62fa4..1fd0f69 100644 --- a/layout/thesis_template.typ +++ b/layout/thesis_template.typ @@ -1,7 +1,8 @@ #import "/layout/cover.typ": * #import "/layout/titlepage.typ": * #import "/layout/disclaimer.typ": * -#import "/layout/acknowledgement.typ": * +#import "/layout/acknowledgement.typ": acknowledgement as acknowledgement_layout +#import "/layout/transparency_ai_tools.typ": transparency_ai_tools as transparency_ai_tools_layout #import "/layout/abstract.typ": * #import "/utils/print_page_break.typ": * @@ -17,6 +18,8 @@ submissionDate: datetime, abstract_en: "", abstract_de: "", + acknowledgement: "", + transparency_ai_tools: "", is_print: false, body, ) = { @@ -49,10 +52,11 @@ author: author, submissionDate: submissionDate ) + transparency_ai_tools_layout(transparency_ai_tools) print_page_break(print: is_print) - - acknowledgement() + + acknowledgement_layout(acknowledgement) print_page_break(print: is_print) diff --git a/layout/transparency_ai_tools.typ b/layout/transparency_ai_tools.typ new file mode 100644 index 0000000..f8947cb --- /dev/null +++ b/layout/transparency_ai_tools.typ @@ -0,0 +1,24 @@ +#let transparency_ai_tools(body) = { + set page( + margin: (left: 30mm, right: 30mm, top: 40mm, bottom: 40mm), + numbering: none, + number-align: center, + ) + + let body-font = "New Computer Modern" + let sans-font = "New Computer Modern Sans" + + set text( + font: body-font, + size: 12pt, + lang: "en" + ) + + set par(leading: 1em) + + // --- AI Usage --- + align(left, text(font: sans-font, 20pt, weight: 700,"Transparency in the use of AI tools")) + v(12pt) + + body +} \ No newline at end of file diff --git a/proposal.typ b/proposal.typ index a14c0d4..11f6960 100644 --- a/proposal.typ +++ b/proposal.typ @@ -12,7 +12,8 @@ advisors: advisors, author: author, startDate: startDate, - submissionDate: submissionDate + submissionDate: submissionDate, + transparency_ai_tools: "/content/transparency_ai_tools.typ", ) #include "/content/proposal.typ" \ No newline at end of file diff --git a/thesis.typ b/thesis.typ index 45b2b55..3b5b84e 100644 --- a/thesis.typ +++ b/thesis.typ @@ -14,7 +14,9 @@ startDate: startDate, submissionDate: submissionDate, abstract_en: include "/content/abstract_en.typ", - abstract_de: include "/content/abstract_de.typ" + abstract_de: include "/content/abstract_de.typ", + acknowledgement: include "/content/acknowledgement.typ", + transparency_ai_tools: include "/content/transparency_ai_tools.typ", ) #include "/content/introduction.typ"