blob: 770640db4f60dbf2402379a21aa6c88ae04b455c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
\usepackage{nag}
\NewDocumentCommand{\Verein}{}{Vereinsname}
\NewDocumentCommand{\sils}{O{} m}{
\todo[color=green!35, #1]{Silas: #2}
}
\NewDocumentCommand{\bpeetz}{O{} m}{
\todo[color=blue!35, #1]{Benedikt: #2}
}
\newcounter{para}
\NewDocumentCommand{\paracount}{}{
\stepcounter{para}
\paragraph{(\arabic{para})}
}
\NewDocumentCommand{\sectionc}{m}{
\section{#1}
\setcounter{para}{0}
}
\usepackage{enumitem} % For the enumerations with letters
|