2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00

Wohnung Checkliste: Add

This commit is contained in:
Martin Thoma 2019-12-11 17:56:08 +01:00
parent 3d95a55177
commit 584ddb60f6
No known key found for this signature in database
GPG key ID: 94DD4FD95F98B113
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,8 @@
SOURCE=wohnung-checkliste
make:
pdflatex $(SOURCE).tex -output-format=pdf
make clean
clean:
rm -rf $(TARGET) *.class *.html *.log *.aux *.out

View file

@ -0,0 +1,37 @@
\documentclass[a4paper]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsmath}
\usepackage[a4paper, left=5mm, top=5mm]{geometry}
\usepackage{array}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\pagenumbering{gobble}
\begin{document}
\section*{WG-Zimmer Checkliste}
\begin{tabular*}{\textwidth}{ll@{}}
Vermieter: & \\ % Anna Beta, Schulstr. 1337, 80933 München
Mieter: & \\ % Max Mustermann, Poststr. 42, 80933 München
Adresse des Mietobjekts: & \\ % Hauptstr. 13, 80933 München
\end{tabular*}
\begin{tabular*}{\textwidth}{|l|p{4cm}|l|p{4cm}|}
\hline
Kaltmiete & ~ & Warmmiete & ~ \\\hline
Ablöse & ~ & Strom: $\square$ Wasser: $\square$ & Warmwasser: $\square$ \\\hline
& ~ & Heizung: $\square$ Internet $\square$ & ~ \\\hline
Mietbeginn & ~ & Zimmer Fläche & ~ \\\hline
Bewohner in der WG & ~ & Toiletten & ~ \\\hline
Rolladen & ~ & Waschmaschine & ~ \\\hline
Möbel & ~ & Fahrradstellplatz & ~ \\\hline
Steckdosen & ~ & ~ & ~ \\\hline
\end{tabular*}
\section*{Notizen}
\end{document}