25 lines
782 B
Bash
Executable file
25 lines
782 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Main LaTeX file (without .tex extension) e.g. '2022_My_Course')
|
|
mainfile=''
|
|
|
|
# Name of course. THis will be the title of the document
|
|
course=''
|
|
|
|
# Lecturer, also shown in title
|
|
lecturer=''
|
|
|
|
# Name of the stylefile where the header will be located (without .sty) extension
|
|
stylefile=''
|
|
|
|
# Name of GitLab instance you will host this repository at
|
|
gitlab='gitlab.com'
|
|
|
|
# Namespace of repository. This will be either your username or the top level group of the repository.
|
|
namespace=''
|
|
|
|
# Rest of the repostiory path. In case of user-repositories, this will just be the repository name. In case of a repository in a (sub)group, this will be the subgroups + the repository name (without the toplvl group)
|
|
repo=''
|
|
|
|
# term when the lecture is held (shown in README)
|
|
term=''
|