├── .gitignore ├── LICENSE ├── README.md ├── _data.tex ├── _invoice.tex ├── _main.pdf ├── _main.tex ├── _main.tex.latexmain ├── invoice.def ├── invoice.sty └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-koppenhagen/latex-rechnung/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-koppenhagen/latex-rechnung/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-koppenhagen/latex-rechnung/HEAD/README.md -------------------------------------------------------------------------------- /_data.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-koppenhagen/latex-rechnung/HEAD/_data.tex -------------------------------------------------------------------------------- /_invoice.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-koppenhagen/latex-rechnung/HEAD/_invoice.tex -------------------------------------------------------------------------------- /_main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-koppenhagen/latex-rechnung/HEAD/_main.pdf -------------------------------------------------------------------------------- /_main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-koppenhagen/latex-rechnung/HEAD/_main.tex -------------------------------------------------------------------------------- /_main.tex.latexmain: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /invoice.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-koppenhagen/latex-rechnung/HEAD/invoice.def -------------------------------------------------------------------------------- /invoice.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-koppenhagen/latex-rechnung/HEAD/invoice.sty -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-koppenhagen/latex-rechnung/HEAD/logo.png --------------------------------------------------------------------------------