-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add transparency about AI tools paragraph (#37)
- Loading branch information
1 parent
4f1fd3c
commit 98fa35c
Showing
8 changed files
with
57 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters