-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvoice.tex
98 lines (76 loc) · 1.58 KB
/
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
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
\documentclass[a4paper]{letter}
%
% Definitions you will want to change.
%
\newcommand{\myname}{Student Run Computing Facility}
\newcommand{\mydetails}{%
\myname \\%
c/o Cambridge University Students' Union \\%
Old Examination Hall \\%
Free School Lane \\%
Cambridge \\%
CB2 3RF \\%
United Kingdom \\%
}
\newcommand{\invoicedate}{01/01/1970}
\newcommand{\invoicereference}{000-00000}
\newcommand{\invoiceto}{%
Recipient \\%
Street \\%
City \\%
Region \\%
Postal Code \\%
Country \\%
}
\newcommand{\accountname}{\myname}
\newcommand{\accountnum}{CHANGEME}
\newcommand{\accountsort}{CHANGEME}
%
% Document structure you probably want to leave (except for the Items table)
%
\usepackage{calc}
\usepackage{tabularx}
\thispagestyle{empty}
\newcommand{\gap}{30pt}
\begin{document}
\begin{center}
\mydetails
\end{center}
\vspace{\gap}
\begin{center}
\LARGE{INVOICE}
\end{center}
\vspace{\gap}
Date: \invoicedate
\hfill
Reference: \invoicereference
\vspace{\gap}
\invoiceto
\vspace{\gap}
%
% Item table - you will want to edit this
%
\begin{center}
\begin{tabularx}{\textwidth}{ | X | c | }
\hline
\textbf{Item} & \textbf{Amount} \\
\hline
Sponsorship & \textsterling 250 \\
\hline
\textbf{Total:} & \textsterling 250 \\
\hline
\end{tabularx}
\end{center}
\vspace{\gap}
\vspace{\gap}
\hrule
\vspace{\gap}
\begin{center}
\begin{tabular}{ r l }
Please pay by bank transfer to: & \accountname \\
Account Number: & \accountnum \\
Sort Code: & \accountsort \\
Reference: & \invoicereference \\
\end{tabular}
\end{center}
\end{document}