Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132935 views
License: OTHER
1
\documentclass[a4paper]{scrartcl}
2
\usepackage{amssymb, amsmath} % needed for math
3
\usepackage[utf8]{inputenc} % this is needed for umlauts
4
\usepackage[ngerman]{babel} % this is needed for umlauts
5
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
6
\usepackage[margin=2.5cm]{geometry} %layout
7
\usepackage{hyperref} % links im text
8
\usepackage{csquotes} % nice quotes
9
\usepackage{parskip} % I don't want indentation
10
\usepackage{color}
11
\usepackage{framed}
12
\usepackage{enumerate} % for advanced numbering of lists
13
\usepackage[locale=DE,per=slash]{siunitx} % for propper units
14
\DeclareSIUnit{\EUR}{\text{~Euro}}
15
\usepackage{multicol}
16
\usepackage{titlesec}
17
\titleformat{\section}{\normalfont\Large\bfseries}{\S\thesection}{1em}{}
18
\clubpenalty = 10000 % Schusterjungen verhindern
19
\widowpenalty = 10000 % Hurenkinder verhindern
20
21
\hypersetup{
22
pdfauthor = {Martin Thoma},
23
pdfkeywords = {Untermietvertrag},
24
pdftitle = {Untermietvertrag}
25
}
26
27
% Anpassen %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
28
\newcommand{\HauptmieterVorname}{Martin} %
29
\newcommand{\HauptmieterNachname}{Thoma} %
30
\newcommand{\HauptmieterAnschrift}{Parkstraße 17, 76131 Karlsruhe} %
31
\newcommand{\UntermieterVorname}{Max} %
32
\newcommand{\UntermieterNachname}{Müller} %
33
\newcommand{\UntermieterAnschrift}{} %
34
\newcommand{\UntermieteBeginn}{01.06.2014} %
35
\newcommand{\UntermieteEnde}{31.08.2014} %
36
\newcommand{\Monatsmiete}{200} %
37
\newcommand{\Kaution}{250} %
38
% Mietgegenstand
39
\newcommand{\Strasse}{Parkstraße} % Deine Straße %
40
\newcommand{\Hausnummer}{17} % Deine Hausnummer %
41
\newcommand{\PLZ}{76131} % Deine PLZ %
42
\newcommand{\Ort}{Karlsruhe} % Dein Ort %
43
\newcommand{\Wohnflaeche}{19} % in m^2 %
44
% Konto
45
\newcommand{\Kontoinhaber}{Martin Thoma} %
46
\newcommand{\Kontonummer}{} %
47
\newcommand{\IBAN}{TODO} %
48
\newcommand{\Bank}{TODO} %
49
\newcommand{\BLZ}{TODO} %
50
\newcommand{\Verwendungszweck}{Miete von [Name des Untermieters]} %
51
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
52
53
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
54
% Begin document %
55
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
56
\begin{document}
57
I, \HauptmieterVorname~\HauptmieterNachname, hereby confirm that I have received \line(1,0){75}
58
Euro from \UntermieterVorname~\UntermieterNachname.
59
60
I, \UntermieterVorname~\UntermieterNachname, hereby confirm that I have received 4 keys (house key,
61
floor key, flat key and room key) from \HauptmieterVorname~\HauptmieterNachname.
62
63
\vspace{1.5cm}
64
\line(1,0){250}\\
65
\vspace{-0.3cm}
66
{\scriptsize Date, Signature of \HauptmieterVorname~\HauptmieterNachname}\\
67
68
69
\vspace{1cm}
70
\line(1,0){250}\\
71
\vspace{-0.3cm}
72
{\scriptsize Date, Signature of \UntermieterVorname~\UntermieterNachname}\\
73
\end{document}
74