aboutsummaryrefslogtreecommitdiff
path: root/overlays/kookie/invoice/template.tex
blob: 33d12f5f6dc03f9bdae3fcc0abc886b4c6f0c54c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode

\documentclass[$fontsize$, a4paper]{scrartcl}

% LAYOUT
%--------------------------------
\usepackage{geometry} 
\geometry{$geometry$}
\pagenumbering{gobble}
\usepackage[document]{ragged2e}
\usepackage{scrlayer-scrpage}

% TYPOGRAPHY
%--------------------------------
\usepackage{fontspec} 
\usepackage{xunicode}
\usepackage{xltxtra}

\setlength{\parskip}{1em}

% Command required by how Pandoc handles the list conversion
\providecommand{\tightlist} {
  \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}
}

% TABLE CUSTOMIZATION
%--------------------------------
\usepackage{spreadtab}
\usepackage[compact]{titlesec}
\usepackage{hhline}
\usepackage{enumitem}
\usepackage{arydshln}

\titlespacing*{\section}{0pt}{3pt}{-7pt}
\renewcommand{\arraystretch}{1.5}
\setlist{nolistsep}
\setlist[itemize]{leftmargin=0.5cm}
\setlength{\tabcolsep}{9pt}


% LANGUAGE
%--------------------------------
$if(lang)$
\usepackage{polyglossia}
\setmainlanguage{german}
$endif$

% PDF SETUP
%--------------------------------
\usepackage[xetex, bookmarks, colorlinks, breaklinks]{hyperref}
\hypersetup
{
  pdfauthor={$author$},
  pdfsubject=Rechnungs Nr. $invoice-nr$,
  pdftitle=Rechnungs Nr. $invoice-nr$,
  linkcolor=blue,
  citecolor=blue,
  filecolor=black,
  urlcolor=blue
}

\usepackage[nodayofweek]{datetime}
\newdate{date}{$date_day$}{$date_month$}{$date_year$}
\date{\displaydate{date}}

% DOCUMENT
%--------------------------------

\ohead{
    \textsc{\textbf{$author$}} \\
    $for(from)$
    \textsc{$from$} \\
    $endfor$
    \textsc{USt-IdNr: $ustid$} \\
    \vspace{1em}
}

\begin{document}

\vspace{1em}

\normalsize \sffamily
$for(to)$
$to$\\
$endfor$

\vspace{6em}

\begin{flushright}
  \small
  $city$, \displaydate{date}
\end{flushright}

\vspace{1em}

\section*{\textsc{Rechnung} \textsc{\#$invoice-nr$}}
\footnotesize
\newcounter{pos}
\setcounter{pos}{0}
\STautoround*{2} % Get spreadtab to always display the decimal part
$if(commasep)$\STsetdecimalsep{,}$endif$ % Use comma as decimal separator

\begin{spreadtab}{{tabular}[t t t]{lp{8.2cm}r}}
  \hdashline[1pt/1pt]
  @ \noalign{\vskip 2mm} \textbf{Pos.} & @ \textbf{Description} & @ \textbf{Prices in $currency$} \\ \hline
      $for(service)$ @ \noalign{\vskip 2mm} \refstepcounter{pos} \thepos 
        & @ $service.description$ 
        $if(service.details)$\newline \begin{itemize} 
          $for(service.details)$\scriptsize \item $service.details$ 
          $endfor$ \end{itemize}
          $endif$ & $service.price$\\$endfor$ \noalign{\vskip 2mm} \hline
  $if(VAT)$
    @ & @ \multicolumn{1}{r}{Subtotal:}                & :={sum(c1:[0,-1])} \\ \hhline{~~-}
    @ & @ \multicolumn{1}{r}{VAT $VAT$\%:}             & $VAT$/100*[0,-1]   \\ \hhline{~~-}
  $else$
    @ & @ \multicolumn{1}{r}{Subtotal:}                & :={sum(c1:[0,-1])} \\ \hhline{~~-}
    @ & @ \multicolumn{1}{r}{USt. Nullregelung:}       & 0                  \\ \hhline{~~-}
  $endif$
  @ & @ \multicolumn{1}{r}{\textbf{Total:}}   & \textbf{:={$if(VAT)$[0,-1]+[0,-2]$else$[0,-2]$endif$}} \\ \hhline{~~-}
\end{spreadtab}

\vspace{15mm}

\sffamily
\small

Bitte überweisen Sie den folgenden Betrag in den nächsten 14 Tagen:

\strong{Kontoinhaber}: $author$ \\
\strong{Kreditinstitut}: $bank$ \\
\strong{IBAN}: $bank_iban$ \\
\strong{BIC}: $bank_bic$

Mit freundlichen Grüßen,

\medskip

$author$

\end{document}