mirror of
https://gitlab.gwdg.de/j.hahn02/university.git
synced 2026-01-01 06:44:25 -05:00
19 lines
328 B
Typst
19 lines
328 B
Typst
#import "../../data/default.typ": *
|
|
#import "../../data/theorems.typ": *
|
|
|
|
#let rot = math.op("rot")
|
|
#let grad = math.op("grad")
|
|
|
|
#let conf(num: none, date: "", type: none, body) = {
|
|
// Global settings
|
|
show: default
|
|
|
|
// Set the header
|
|
[MaPhy III \ Vorlesung #(num)]
|
|
// Make outline
|
|
outline()
|
|
|
|
// load the document
|
|
body
|
|
}
|