summaryrefslogtreecommitdiff
path: root/templates/German-invoice.tex
blob: fe29baf73747e3312496061b3918636ba5c270b8 (plain)
  1. \documentclass[twoside]{scrartcl}
  2. \usepackage[frame]{xy}
  3. \usepackage{tabularx}
  4. \usepackage[latin1]{inputenc}
  5. \setlength{\voffset}{0.5cm}
  6. \setlength{\hoffset}{-2.0cm}
  7. \setlength{\topmargin}{0cm}
  8. \setlength{\headheight}{0.5cm}
  9. \setlength{\headsep}{1cm}
  10. \setlength{\topskip}{0pt}
  11. \setlength{\oddsidemargin}{1.0cm}
  12. \setlength{\evensidemargin}{1.0cm}
  13. \setlength{\textwidth}{19.2cm}
  14. \setlength{\textheight}{24.5cm}
  15. \setlength{\footskip}{1cm}
  16. \setlength{\parindent}{0pt}
  17. \renewcommand{\baselinestretch}{1}
  18. \begin{document}
  19. \newlength{\descrwidth}\setlength{\descrwidth}{10cm}
  20. \newsavebox{\hdr}
  21. \sbox{\hdr}{
  22.   \fontfamily{cmss}\fontsize{10pt}{12pt}\selectfont
  23. \parbox{\textwidth}{
  24. \parbox[b]{12cm}{
  25. <%company%>
  26. <%address%>}\hfill
  27. \begin{tabular}[b]{rr@{}}
  28. Telefon & <%tel%>\\
  29. Telefax & <%fax%>
  30. \end{tabular}
  31. \rule[1.5ex]{\textwidth}{0.5pt}
  32. }
  33. }
  34. \fontfamily{cmss}\fontshape{n}\selectfont
  35. \markboth{<%company%>\hfill <%invnumber%>}{\usebox{\hdr}}
  36. \pagestyle{myheadings}
  37. %\thispagestyle{empty} use this with letterhead paper
  38. <%pagebreak 65 27 37%>
  39. \end{tabular*}
  40. \rule{\textwidth}{2pt}
  41. \hfill
  42. \begin{tabularx}{7cm}{Xr@{}}
  43. \textbf{Subtotal} & \textbf{<%sumcarriedforward%>} \\
  44. \end{tabularx}
  45. \newpage
  46. \markright{<%company%>\hfill <%invnumber%>}
  47. \vspace*{-12pt}
  48. \begin{tabular*}{\textwidth}{@{}lp{\descrwidth}@{\extracolsep\fill}rlrrr@{}}
  49. \textbf{Nummer} & \textbf{Artikel} & \textbf{Anz} &
  50. \textbf{Einh} & \textbf{Preis} & \textbf{Rab} & \textbf{Total} \\
  51. & Übertrag von Seite <%lastpage%> & & & & & <%sumcarriedforward%> \\
  52. <%end pagebreak%>
  53. \fontfamily{cmss}\fontsize{10pt}{12pt}\selectfont
  54. \vspace*{2cm}
  55. <%name%>
  56. <%address1%>
  57. <%if address2%>
  58. <%address2%>
  59. <%end address2%>
  60. <%city%> <%state%> <%zipcode%>
  61. <%if country%>
  62. <%country%>
  63. <%end country%>
  64. \vspace{3.5cm}
  65. \textbf{R E C H N U N G}
  66. \hfill
  67. \begin{tabular}[t]{l@{\hspace{0.3cm}}l}
  68. \textbf{Datum} & <%invdate%> \\
  69. \textbf{Nummer} & <%invnumber%> \\
  70. \end{tabular}
  71. \vspace{1cm}
  72. \begin{tabular*}{\textwidth}{@{}lp{\descrwidth}@{\extracolsep\fill}rlrrr@{}}
  73. \textbf{Nummer} & \textbf{Artikel} & \textbf{Anz} &
  74. \textbf{Einh} & \textbf{Preis} & \textbf{Rab} & \textbf{Total} \\
  75. <%foreach number%>
  76. <%number%> & <%description%> & <%qty%> &
  77. <%unit%> & <%sellprice%> & <%discount%> & <%linetotal%> \\
  78. <%end number%>
  79. \end{tabular*}
  80. \parbox{\textwidth}{
  81. \rule{\textwidth}{2pt}
  82. \vspace{0.2cm}
  83. \hfill
  84. \begin{tabularx}{7cm}{Xr@{}}
  85. \textbf{Zwischensumme} & \textbf{<%subtotal%>} \\
  86. <%foreach tax%>
  87. <%taxdescription%> auf <%taxbase%> & <%tax%> \\
  88. <%end tax%>
  89. \hline
  90. \textbf{Total} & \textbf{<%invtotal%>} \\
  91. <%if paid%>
  92. \textbf{Bezahlt} & <%paid%> \\
  93. <%end paid%>
  94. <%if total%>
  95. \textbf{Bezahlbar} & \textbf{<%total%>} \\
  96. <%end total%>
  97. \end{tabularx}
  98. \vspace{0.3cm}
  99. \hfill
  100. Alle Preise in \textbf{<%currency%>}.
  101. \vspace{12pt}
  102. <%if notes%>
  103. <%notes%>
  104. <%end if%>
  105. }
  106. %\vfill
  107. %\centerline{\textbf{salute}}
  108. \renewcommand{\thefootnote}{\fnsymbol{footnote}}
  109. \footnotetext[1]{\tiny
  110. Rechnung ist bezahlbar innerhalb von <%terms%> Tagen.
  111. Nach dem <%duedate%> werden Zinsen zu einem
  112. monatlichen Satz von 1.5\% verrechnet.
  113. Waren bleiben im Besitz von <%company%> bis die Rechnung voll bezahlt ist.
  114. Rückgaben werden mit 10 Prozent Lagergebühren belastet. Beschädigte Waren
  115. und Waren ohne eine Rückgabenummer werden nicht entgegengenommen.
  116. }
  117. \end{document}