Package Information
- Last Updated
- Minimum Typst Version
- 0.14.0
- Authors
- Johannes Knoll
- Categories
- thesis
- Disciplines
- education
Preview
1. Get the package
Download the package using the TPIX CLI:
tpix get @preview/hannes-thesis:0.1.02. Initialize from template
Create a new project from this template:
typst init @preview/hannes-thesis:0.1.0hannes-thesis
An academic template, designed for final reports, Bachelor theses, and Master
theses.
Example usage
#show: thesis.with(
title: "Meine Typst Thesis",
subtitle: "Eine persönliche Vorlage von Hannes",
lang: "de",
authors: (
(
name: "Johannes Knoll",
email: "johannes.knoll@tha.de",
studiengang: "Informatik Bachelor",
matrikelnr: "Mat.-Nr. 1234567",
),
),
logo: image("assets/THA_Logo_S_Red_RGB.svg", width: 80%),
footer-logo: image("assets/THA_Wordmark_S_Red_RGB.svg", width: 25%),
outlines: (
outline(title: [Abkürzungsverzeichnis], target: figure.where(kind: image)),
outline(title: [Abbildungsverzeichnis], target: figure.where(kind: image)),
outline(title: [Tabellenverzeichnis], target: figure.where(kind: table)),
outline(title: [Quellcode], target: figure.where(kind: raw)),
),
bibliography: bibliography("refs.bib"),
toc: outline(title: [Custom Outline Title]),
)