This template was created for a master thesis at the faculty of computer science (FIN), but should work as well for other faculties.
.
├── assets // Images, CSV-Files, etc.
│ └── figure // Image files
│ └── optimal-ovgu-thesis
├── chapter // Content
│ ├── 01-Einleitung.typ
│ ├── ...
│ └── 99-Appendix.typ
├── expose.typ // Exposé template
├── metadata.typ // Metadata and template config
├── thesis.bib // Bibliography (e.g. generated by Zotero + Better BibTex)
└── thesis.typ // Thesis template
Faculty header logos are available as svg in assets/figure/optimal-ovgu-thesis
. See cd.ovgu.de for more information regarding the OvGU corporate design.
Header logos are set in metadata.typ
:
// Example 1: Use UCC logo as organisation-logo and the FIN faculty header as header-logo
#let organisation-logo = image("assets/figure/optimal-ovgu-thesis/ucc.svg", width: 2cm)
#let header-logo = image("assets/figure/optimal-ovgu-thesis/fin-de.svg", width: 100%)
// Example 2: Do not use logos at all
#let organisation-logo = none
#let header-logo = none
This template requires these two fonts to be installed on your system:
- New Computer Modern
- New Computer Modern Sans
In your configuration.nix
:
fonts.packages = with pkgs; [
liberation_ttf # here are your other fonts (liberation is just an example)
] ++ texlive.newcomputermodern.pkgs; # ← New Computer Modern font
In case you want to contribute, check out the repo into a typst package directory
Local package path: ~/.local/share/typst/packages/local/optimal-ovgu-thesis/0.1.0
mkdir -p ~/.local/share/typst/packages/local/optimal-ovgu-thesis
cd ~/.local/share/typst/packages/local/optimal-ovgu-thesis
git clone git@github.com:v411e/optimal-ovgu-thesis.git
mv optimal-ovgu-thesis 0.1.0
This will make the package available locally, so you can use typst init "@local/optimal-ovgu-thesis:0.1.0"
to create a test-project from the template.