-
Notifications
You must be signed in to change notification settings - Fork 0
/
einzeln.grundgeruest.tex
61 lines (41 loc) · 1.01 KB
/
einzeln.grundgeruest.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
%% Dieses LaTeX-File wird nur in die Unterordner gesymlinkt und kompiliert eine
%% einzelne Ordnung
% Gemeinsame Prämbel
\input{../common_preamble.tex}
\makeatletter
% Setze Titel des Dokuments als Kopfzeile
\usepackage{scrlayer-scrpage}
\pagestyle{scrheadings}
\def\@jurshorttitle{}
\lohead{\@jurshorttitle}
\rohead{Beschlossen: \@stupadate}
% Diese Umgebung umschließt das eigentliche Dokument. Argument ist der Titel, optional noch ein Kurztitel
\newenvironment{jurdoc}[2][]{% begin{jurdoc}
\ifthenelse{\isempty{#1}}{\def\@jurshorttitle{#2}}{\def\@jurshorttitle{#1}}
\title{#2}
\date{
\begin{tabular}{ll}
Beschluss: & \@stupadate \\
Veröffentlichung: & \@publishdate \\
\end{tabular}
}
\maketitle
\@jurchanges
\bigskip
\@jurpreamble
\begin{multicols}{2}
\tableofcontents
\end{multicols}
\bigskip
\begin{multicols}{2}%
\begin{contract}%
\setcounter{Paragraph}{0}%
%
}{% end{jurdoc}
\end{contract}%
\end{multicols}%
}% Ende von jurdoc
\makeatother
\begin{document}
\input{document.core.tex}
\end{document}