mirror of
https://gitlab.gwdg.de/j.hahn02/university.git
synced 2026-01-01 06:44:25 -05:00
21 lines
405 B
Typst
21 lines
405 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, ueb: false, body) = {
|
|
// Global settings
|
|
show: default
|
|
|
|
// Set the header
|
|
if (ueb == false) [AnaMech \ Vorlesung #(num)]
|
|
if (ueb == true) [AnaMech \ Uebung #(num)]
|
|
|
|
// Make the outline
|
|
outline()
|
|
|
|
// load the document
|
|
body
|
|
}
|