2022-01-29 15:43:50 +01:00
|
|
|
\documentclass[12pt]{article}
|
|
|
|
\usepackage{german}
|
|
|
|
\usepackage{eurosym}
|
|
|
|
\usepackage[a4paper, left=2cm, right=2cm, top=2cm]{geometry}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
|
|
|
|
|
2022-01-29 14:40:14 +01:00
|
|
|
Haus: $details['description']
|
|
|
|
Jahr: $year
|
|
|
|
|
2022-01-29 15:43:50 +01:00
|
|
|
\begin{tabular}{|p{5cm}|r|r|r|}
|
2022-01-29 14:40:14 +01:00
|
|
|
|
2022-01-29 15:43:50 +01:00
|
|
|
\hline Art & Wohnungen & andere Fl"achen & gesamt \\
|
2022-01-29 14:40:14 +01:00
|
|
|
|
2022-01-29 15:43:50 +01:00
|
|
|
\hline Fl"ache & $areas['flat_area'] & $areas['other_area'] & $areas['total_area'] \\
|
|
|
|
\hline Faktor & #echo '%.10f' % $areas['flat_factor'] # & #echo '%.10f' % $areas['other_factor'] # & \\
|
2022-01-29 14:40:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
#for $item in $overhead_items
|
2022-01-29 15:43:50 +01:00
|
|
|
\hline $item['category'] & #echo '%.2f' % $item['flat_part'] # & #echo '%.2f' % $item['other_part'] # & #echo '%.2f' % $item['sum'] # \\
|
2022-01-29 14:40:14 +01:00
|
|
|
#end for
|
|
|
|
|
2022-01-29 15:43:50 +01:00
|
|
|
\hline Zwischensumme & #echo '%.2f' % $flat_sum # & #echo '%.2f' % $other_sum # & #echo '%.2f' % $total_sum # \\
|
|
|
|
\hline Umlageausfallwagnis & #echo '%.2f' % $umlage_ausfall_wagnis # & & \\
|
|
|
|
\hline Summe & #echo '%.2f' % $flat_sum_2 # & & \\
|
|
|
|
|
|
|
|
\hline Anteil / Monat / m2 & #echo '%.10f' % $part_by_montharea # & & \\
|
|
|
|
\hline
|
|
|
|
|
|
|
|
\end{tabular}
|
2022-01-29 14:40:14 +01:00
|
|
|
|
2022-01-29 15:43:50 +01:00
|
|
|
\end{document}
|