Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

definitely-not-isec-thesis:1.0.0 #1548

Merged
merged 27 commits into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
12b36c4
add isec-master-thesis-template:1.0.0
ecomaikgolf Jan 10, 2025
07c9cf5
add LICENSE
ecomaikgolf Jan 10, 2025
1b8b076
comments on packages/
ecomaikgolf Jan 10, 2025
d3c1f00
add thumbnail
ecomaikgolf Jan 10, 2025
56082dc
swap @local for @preview
ecomaikgolf Jan 10, 2025
a7f8ea1
switch to kebab-case
ecomaikgolf Jan 10, 2025
a3adba1
swap local for preview (again)
ecomaikgolf Jan 10, 2025
c46efc0
errata _ -> -
ecomaikgolf Jan 13, 2025
75a835b
fix kebab-case for partitle
ecomaikgolf Jan 18, 2025
acd5b54
debug line number support
ecomaikgolf Jan 18, 2025
5d80cc5
string to content
ecomaikgolf Jan 18, 2025
68dcfa7
trim captions in table of contents
ecomaikgolf Jan 18, 2025
b01bec1
explicitly show ellipsis on table of contents
ecomaikgolf Jan 18, 2025
e729dc3
add highlight TODOs in debug
ecomaikgolf Jan 18, 2025
2239a5e
better ToC cutting
ecomaikgolf Jan 20, 2025
5d34957
fix debug line numbering for fix-311
ecomaikgolf Jan 22, 2025
1366100
add vim modeline
ecomaikgolf Jan 22, 2025
3e4dcb2
add comment about debugging being slow
ecomaikgolf Jan 27, 2025
5c290f6
IMPORTANT: remove debug options due to performance
ecomaikgolf Feb 7, 2025
361ff06
bring back fixed debug
ecomaikgolf Feb 7, 2025
a487666
remove trailing whitespace
ecomaikgolf Feb 7, 2025
3aa1187
configurable institute name
ecomaikgolf Feb 10, 2025
d992dfb
supervisors academic degrees optional
ecomaikgolf Feb 10, 2025
a921aca
compare against `content` and not str content
ecomaikgolf Feb 10, 2025
89ae024
rename template
ecomaikgolf Feb 18, 2025
b4dd002
move folder
ecomaikgolf Feb 18, 2025
cd31604
fix quote
ecomaikgolf Feb 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
author: none,
curriculum: none,
supervisors: none,
institute: none,
date: none,
acknowledgements: none,
abstract: none,
Expand Down Expand Up @@ -78,7 +79,7 @@
// Set document metadata
#set document(
title: title,
author: author.at(0).text,
author: if type(author) == "content" { author.text } else { author.at(0).text },
keywords: content-to-string(keywords.join(", "))
)

Expand All @@ -91,6 +92,7 @@
author: author,
curriculum: curriculum,
supervisors: supervisors,
institute: institute,
date: date
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
author: (),
curriculum: [],
supervisors: (),
institute: [],
date: [],
) = [

Expand Down Expand Up @@ -40,7 +41,11 @@
// Author: 14pt 16pt
#v(2.83cm)
#text(size: 14pt)[
#author.join(", ")
#if type(author) == "content" [
#author
] else [
#author.join(", ")
]
]


Expand Down Expand Up @@ -97,14 +102,15 @@
#box(width: 100%, height: 0.81cm)[
#set text(size: 10pt)
#for sup in supervisors [
#sup.at(0), #sup.at(1) #parbreak()
#if type(sup) == "content" [ #sup ] else [ #sup.join(", ") ]
#parbreak()
]
]

#v(0.14cm)

#text(size: 10pt)[
Institute of Information Security
#institute
]

#v(1.51cm)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
([Firstname Lastname], [Academic Degrees]),
([Firstname Lastname], [Academic Degrees])
),
institute: [Institute of Information Security],
date: [Month Year],
acknowledgements: [
Thanks everyone who made this thesis possible
Expand Down
Loading