Simple automated LaTeX invoicing system for freelancers.
For detils see original creation, of which this is forked.
I've built this for my personal use, but I quite extended it so I thought some changes might be interesting to some, so I now fake-forked it afterwards (I'm no coder and new to git, so I didn't handle my initial forking properly... I'm sorry :-(
)
this template uses the IBM PLEX SANS and MONO, added some personal quirks, such as the possibility to include a bible verse, and made it possible to calculate rates... and adds the notice for small business use according to AUSTRIAN law.
see examples, there's the possibility to create invoices with rates and without rates:
I've written a powershell script that copies all necessary files to another directory, performs the pandoc tasks there, then removes the files. this seperates the templating from the content-work.
its in the "copy-to-your-working-directory" folder.
otherwise use the make.ps1 file or make.sh file, or write your own makefile. I'm a programming noob and not a linux user, so I'm not familiar with makefiles yet... I just wrote a quick script in powershell, because that's what's easiest for me atm.
- LaTeX with the following extra packages:
fontspec
geometry
ragged2e
spreadtab
fp
xstring
arydshln
hhline
titlesec
enumitem
xunicode
xltxtra
hyperref
polyglossia
wallpaper
footmisc
, new: ,array
,tabularx
, also loaded currently but not actually in use in the document:xcolor
,graphics
andgraphicx
- Pandoc, the universal document converter.
To install LaTeX on Mac OS X, I recommend getting the smaller version BasicTeX from here and installing the additional packages with tlmgr
afterwards. Same goes for Linux: install texlive-base
with your package manager and add the needed additional packages later.
To install pandoc on Mac OS X, run brew install pandoc
. To install it on Linux, refer to the official docs.
- The content is in the files "invoice.yaml" (here is example content, commented, but it should only include data that is the same for all your invoices!)
- then change the .md file, best use those in the "files_for_other_directories" folder
- copy these .md files somewhere where you want to have them and generate your pdfs
- copy make_invoice.ps1 somewhere to your path
- change the path in make_invoice.ps1 to the folder containing the template:
- go to your working directory with your md file, run
make_invoice.ps1 myfilename.md
Note: this template needs to be compiled with XeTeX.
you need to have powershell installed (default on windows 10) to use the script aforementioned, otherwise you can just use the make.sh script on linux and macOS, though i have not tested it. there's also make.ps1
which does the same in powershell.
not all are documented, UST-Befreit is for small businesses in austria, it provides the legally required notice for VAT-exemption
-
UST
: your VAT rate, enables VAT calculation (but calls it UST for german/austrian UMSATZSTEUER) -
UST-befreit: adds notice for small businesses according to AUSTRIAN law.
-
also new: for bible verses:
bible
,verse
,daily-verse
,period
, extendedfrom
tofromand
andwebsite
-
ALSO: i expanded the previous
service
withrate-service
, see the.md
files for proper use. -
currency
: Your currency in symbol, such as € or $ -
commasep
: Set totrue
to use a comma as decimal separator. This is for display purposes only—remember to always use a dot to set the prices in your YAML file. -
lang
: Sets the main language through thepolyglossia
package. This is important for proper hyphenation and date format. -
seriffont
: Used for the heading and the sender address. Hoefler Text is the default, but every font installed on your system should work out of the box (thanks, XeTeX!) -
sansfont
: Used to render the recipient address, the table and the closing note. Defaults to Helvetica Neue. -
fontsize
: Possible values here are 10pt, 11pt and 12pt. -
geometry
: A string that sets the margins throughgeometry
. Read this to learn how this package works. -
closingnote
: This gets printed after the table as a closing note. Use it to provide your bank details and a thank you message. -
letterhead
: include custom letterhead in the PDF (see below).
If you have already designed your own letterhead and want to use it with this template, including it should be easy enough. Set the letterhead
option to true
to activate the wallpaper
package in the template. wallpaper
will look for a file named letterhead.pdf
in the project root folder and print it on the PDF before compiling the document. Change the fonts to match the ones in your letterhead, adjust the margins with geometry
and you should be all set.
- Typesetting Automation, my article about this project with in-depth instructions and some suggestions for an ideal workflow.
- Grids of Numbers Recommendations on Butterick's Practical Typography
- Multichannel Text Processing by iA
- Why Microsoft Word must Die by Charlie Stross
- Word Processors: Stupid and Inefficient by Allin Cottrell
- Proprietary Binary Data Formats: Just Say No! by Sam Steingold
- The Beauty of LaTeX by Dario Taraborelli
- Refer to pandoc's documentation to learn more about how templates work.
- If you're not familiar with the YAML syntax, here's a good overview.
- If you want to edit the template but LaTeX scares you, these docs put together by ShareLaTeX cover most of the basics and are surprisingly kind to the beginner.
- Odds are your question already has an answer on TeX Stack Exchange. Also, pretty friendly crowd in there.
- Need to fax that invoice? Check out Phaxio and learn how to send your faxes from the command line with a simple API call.
- cv-boilerplate — Easing the process of building and maintaining a CV using LaTeX
- letter-boilerplate — Typeset your important letters without leaving your text editor
for original document, the license is:
the licensing for this document so far isn't stated, but it is as restricted as allowed by the initial GPL license, for as long as I haven't read and made this whole repo actually nice and useable.