h

haw-hamburg

@preview

Unofficial template for writing a report or thesis in the HAW Hamburg Faculty of Computer Science and Digital Society style.

v0.9.0
GPL-3.0-only

Package Information

Last Updated
Minimum Typst Version
0.15.0
Categories
reportthesis

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/haw-hamburg:0.9.0

2. Import in your Typst file

Add this to your .typ file:

#import "@preview/haw-hamburg:0.9.0": *

Version History

0.9.00.15.0
b08e2fc88457...
0.8.20.14.0
2a08ebe8d549...
0.8.10.14.0
fad03826a217...
0.8.00.14.0
3dc859edb9de...
0.7.00.13.0
62226e61e6dd...
0.6.20.13.0
3809451d6ded...
0.6.10.13.0
552a1e7e11b3...
0.6.00.13.0
2f71ebc87142...
0.5.10.13.0
90ccc7191938...
0.5.00.13.0
23818b8910e0...
0.4.00.13.0
24e2c9396f77...
0.3.3
89b85ca84e22...
0.3.1
5aa9b1ce9161...
0.3.0
af9c65e940bb...
0.2.0
995f2418f12c...
0.10.00.15.0
1311813451e6...
0.1.0
db31b4027989...

HAW Hamburg Typst Template

This is an unofficial template for writing a report or thesis in the HAW Hamburg Faculty of Computer Science and Digital Society style using Typst.

Usage

To use this package just add the following code to your Typst document:

Report

#import "@preview/haw-hamburg:0.9.0": report

#show: report.with(
  language: "en",
  title: "Example title",
  author:"Example author",
  faculty: "Computer Science and Digital Society",
)

Bachelor Thesis

#import "@preview/haw-hamburg:0.9.0": bachelor-thesis

#show: bachelor-thesis.with(
  language: "en",

  title-de: "Beispiel Titel",
  keywords-de: ("Stichwort", "Wichtig", "Super"),
  abstract-de: "Beispiel Zusammenfassung",

  title-en: "Example title",
  keywords-en:  ("Keyword", "Important", "Super"),
  abstract-en: "Example abstract",

  author: "Example author",
  faculty: "Computer Science and Digital Society",
  study-course: "Bachelor of Science Informatik Technischer Systeme",
  supervisors: ("Prof. Dr. Example", "Prof. Dr. Example"),
  submission-date: datetime(year: 1948, month: 12, day: 10),
)

Master Thesis

#import "@preview/haw-hamburg:0.9.0": master-thesis

#show: master-thesis.with(
  language: "en",

  title-de: "Beispiel Titel",
  keywords-de: ("Stichwort", "Wichtig", "Super"),
  abstract-de: "Beispiel Zusammenfassung",

  title-en: "Example title",
  keywords-en:  ("Keyword", "Important", "Super"),
  abstract-en: "Example abstract",

  author: "The Computer",
  faculty: "Computer Science and Digital Society",
  study-course: "Master of Science Computer Science",
  supervisors: ("Prof. Dr. Example", "Prof. Dr. Example"),
  submission-date: datetime(year: 1948, month: 12, day: 10),
)

Exposé

#import "@preview/haw-hamburg:0.9.0": expose

#show: expose.with(
  language: "en",
  title: "Example title",
  keywords: ("Keyword", "Important", "Super"),
  author: "Example author",
  faculty: "Computer Science and Digital Society",
  supervisors: ("Prof. Dr. Example", "Prof. Dr. Example"),
  submission-date: datetime(year: 1948, month: 12, day: 10),
)

Examples

Examples can be found inside of the templates directory