A package and template for drafting legislative content in a German-style structuring, such as for bylaws, etc.
While the template is designed to be used in German documents, all strings are customizable. You can have a look at the delegis.typ
to see all available parameters.
General Usage
While this README.md
gives you a brief overview of the package’s usage, we recommend that you use the template (in the template
folder) as a starting point instead.
Importing the Package
#import "@preview/delegis:0.1.0": *
Initializing the template
#show: it => delegis(
// Metadata
title: "Vereinsordnung zu ABCDEF", // title of the law/bylaw/...
abbreviation: "ABCDEFVO", // abbreviation of the law/bylaw/...
resolution: "3. Beschluss des Vorstands vom 24.01.2024", // resolution number and date
in-effect: "24.01.2024", // date when it comes into effect
draft: false, // whether this is a draft
// Template
logo: image("wuespace.jpg", alt: "WüSpace e. V."), // logo of the organization, shown on the first page
// Content
it
)
Sections
Sections are auto-detected as long as they follow the pattern § 1 ...
or § 1a ...
in its own paragraph:
§ 1 Geltungsbereich
(1)
Diese Ordnung gilt für alle Mitglieder des Vereins.
(2)
Sie regelt die Mitgliedschaft im Verein.
§ 2 Mitgliedschaft
(1)
Die Mitgliedschaft im Verein ist freiwillig.
(2)
Sie kann jederzeit gekündigt werden.
§ 2a Ehrenmitgliedschaft
(1)
Die Ehrenmitgliedschaft wird durch den Vorstand verliehen.
Overarching Sections
If you want to add more structure to your sections, you can use normal Typst headings. Note that only the level 6 headings are reserved for the section numbers:
= Allgemeine Bestimmungen
§ 1 ABC
§ 2 DEF
= Besondere Bestimmungen
§ 3 GHI
§ 4 JKL
Sentence Numbering
If a paragraph contains multiple sentences, you can number them by adding a #s~
at the beginning of the sentences:
§ 3 Mitgliedsbeiträge
#s~Die Mitgliedsbeiträge sind monatlich zu entrichten.
#s~Sie sind bis zum 5. des Folgemonats zu zahlen.
This automatically adds corresponding sentence numbers in superscript.
Referencing other Sections
Referencing works manually by specifying the section number. While automations would be feasible, we have found that in practice, they’re not as useful as they might seem for legislative documents.
In some cases, referencing sections using § X
could be mis-interpreted as a new section. To avoid this, use the non-breaking space character ~
between the §
and the number:
§ 5 Inkrafttreten
Diese Ordnung tritt am 24.01.2024 in Kraft. §~4 bleibt unberührt.