h

hannes-thesis

@preview

An academic template, designed for final reports, Bachelor theses, and Master theses.

v0.1.0
MIT-0
Template

Package Information

Last Updated
Minimum Typst Version
0.14.0
Categories
thesis
Disciplines
education

Preview

Template preview

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/hannes-thesis:0.1.0

2. Initialize from template

Create a new project from this template:

typst init @preview/hannes-thesis:0.1.0

Version History

0.1.00.14.0
9573cb10ee66...

hannes-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]),
)