-
Notifications
You must be signed in to change notification settings - Fork 0
/
hausarbeit-main.tex
120 lines (87 loc) · 2.68 KB
/
hausarbeit-main.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
%% TimmLiTeX
%% Version: v0.9.1
%% Last modified: 2024-02-20 18:18:26
\documentclass[
11pt,
bibliography=totoc,
twoside=semi, % semi: two-sided printing with one-sided (equal) margins
]{scrartcl}
\RequirePackage{etoolbox}
\newbool{draftmode}
\booltrue{draftmode}
\input{scrarticle-settings}
\input{basic-text-settings}
%==============================
% Optional packages & settings
%------------------------------
%% Uncomment the following line for deactivating draftmode
% \boolfalse{draftmode} % Deactivate draftmode
%% Language
\AtBeginDocument{
\selectlanguage{german} % which language is available depends on how babel is loaded
}
% \input{TLmacros} % the content of TLmacros.tex goes here
%% Commenting
\input{packages/todonotes-settings}
%% Tables
\usepackage{booktabs} % Nicer tables
%% Graphics
\input{packages/tikz-settings}
\input{packages/forest-settings}
%% Linguistics
\input{packages/linguex-settings}
\input{packages/langsci-avm-settings}
% \usepackage[inference]{semantic} % for CCG
% \usepackage{packages/ccg}
%% Code listings
\input{packages/listings-settings}
%==============================
% Title
%------------------------------
\subject{Hausarbeit}
\title{Titel over two \newlineTitle lines} % change title
\author{Max Mustermann} % change name
\affiliation{
Matrikelnummer: 123456789\\ % change Matrikelnummer
Emailaddresse: \url{[email protected]}\\[1ex] % change email address
Studiengang: BSc Neue Ätherwissenschaften \\ % change Studiengang
Seminar: Seminarname, Universität Tübingen, WS 2021/2022\\ % change seminar and date
Datum der Fassung: \today, \currenttime
}
%% Uncomment the following line for removing the watermark
% \boolfalse{draftmode}
\ifbool{draftmode}{
\usepackage[firstpageonly=true]{draftwatermark}
\SetWatermarkScale{1}
\AtBeginDocument{\SetWatermarkText{DRAFT}}
}{}
%==============================
% Document start
%------------------------------
\begin{document}
\maketitle
\newpage
\tableofcontents
\newpage
\input{hausarbeit-examples.tex}
\section{Blindtext}
\lipsum
%------------------------------
% Document end
%==============================
\insertBib
\newpage
\section*{Erklärung}
Hiermit erkläre ich, dass ich die vorliegende Arbeit selbstständig verfasst und keine anderen Hilfsmittel als die angegebenen verwendet habe.
Insbesondere versichere ich, dass ich alle wörtlichen und sinngemäßen Übernahmen aus anderen Werken als solche kenntlich gemacht habe.
\vspace{10ex}
\noindent
\begin{tabular}{lcl}
\rule{6cm}{1pt} & \hspace{1cm} & \rule{6cm}{1pt} \\
Ort/Datum & & Unterschrift
\end{tabular}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: