forked from MartinThoma/LaTeX-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d95a55
commit 584ddb6
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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} |