-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-invoice.tex
40 lines (27 loc) · 1.04 KB
/
template-invoice.tex
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
% Copy this template to create a new invoice.
%
\documentclass[SN,11pt,enlargefirstpage=true,sps]{scrlttr2}
\usepackage{rechnung}
% Specify the invoice date (day, month, year)
\newdate{invoicedate}{24}{12}{2000}
% If you create multiple invoices on a single day,
% increase this counter for each invoice.
\setkomavar{invoicenr}{1}
% Set your signature here
\setkomavar{signature}{Your Name, SPSA Function}
\begin{document}
\begin{letter}{Max Muster\\Musterstrasse 42\\8640 Rapperswil}
\opening{Dear Person,}
This is an invoice for the following items:
\begin{invoice}{0.0}% No VAT? To hide VAT completely, change this from `0.0` to `0`.
% Add your items here (description, price, count)
\Fee{Work per hour}{60}{1.75}
\Fee{Silver Sponsoring}{500}{1}
\end{invoice}
Payment terms: 30 days.
You can write more stuff here. Like lorem ipsum dolor etc. Which is not
actually Latin, by the way! It just looks like it is, but it is not. But at
least it fills the necessary space!
\closing{\\Best regards,}
\end{letter}
\end{document}