├── .github └── FUNDING.yml ├── .gitignore ├── Basic_Invoice.txt ├── Invoice_tabulation_example.txt ├── Letter_01.txt ├── Lettre_01.txt ├── Preview ├── Sample_invoice_in_iA_Writer_Markdown.png ├── iAWriter_Basic_Invoice_preview.png ├── iAWriter_English_letter_01_template_preview.png ├── iAWriter_Francais_modele-lettre_01_preview.png ├── iAWriter_Scope_of_work_preview.png └── iAWriter_Scope_of_work_split_preview.png ├── README.md └── Scope_of_work.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [YJPL] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Basic_Invoice.txt: -------------------------------------------------------------------------------- 1 | ## Invoice 2 | 3 |
4 | From Mrs Unetelle 5 | Unfreelancer 6 | 7 Street Address Name, 7 | 1010101 City — Country Name 8 | Tel: + 0123456789 9 | [name@email.com](mailto:name@email.com) 10 | 11 | 12 | To Mr so-and-so 13 | Surrogate Micro-Manager 14 | Address line 1 15 | Address Line 2 16 | Company 17 | Postcode, City 18 | VAT number 19 | 20 | - Invoice **#0442** 21 | - Invoice date: 2024/08/05 22 | - Payment terms: NET 10 23 | - Order date: 24 | - Delivery date: 25 | - Reference/order number 26 | 27 | | Reference | Rate | Excl. VAT | VAT | 28 | |:-|:-|:-|:-| 29 | | project x | $ 199/hour | =(199 * 60) | =(21 / 100 * 11940) | 30 | | changes | | 57.98 | =(21 / 100 * 57.98) | 31 | | | Subtotal € | =(C1 + C2 ) | =(TOTAL)| 32 | | | TOTAL + VAT € | =(C1 + C2 + D1 + D2) | — | 33 | 34 | Total amount payable on the Cashless bank account number: 123-4567891-00 35 | 36 | 37 | Payment is Due within ten (10) Days of receipt of invoice. 38 | Thank you, it’s been a pleasure working with you! 39 | -------------------------------------------------------------------------------- /Invoice_tabulation_example.txt: -------------------------------------------------------------------------------- 1 | # Invoice in iA Writer 2 | 3 | *just a quick example* 4 | 5 | | Style + Animation | Excl. VAT | VAT | 6 | |:-|:-|:-| 7 | | original illustrations | 3000 | =(21 / 100 * 3000) | 8 | | animation | 3600 | =(21 / 100 * 3600) | 9 | | changes/expenses | 1200 | =(21 / 100 * 3600) | 10 | | TOTAL € | =(TOTAL) | =(TOTAL)| 11 | | TOTAL INCL. VAT € | =(B1 + B2 + B3 + C1 + C2 + C3) | — | -------------------------------------------------------------------------------- /Letter_01.txt: -------------------------------------------------------------------------------- 1 | 2 | Mrs Such 3 | Surrogate Manager 4 | 7 Street Address Name, 5 | 1010101 City — Country Name 6 | Tel: + 0123456789 7 | [name@email.com](mailto:name@email.com) 8 | 9 | 10 | 11 | Name 12 | Address line 1 13 | Address line 2 14 | Postcode, City 15 | 16 |8 November 2023
17 | 18 | **Reference: number 106** 19 | > (Objet: It could be important) 20 | 21 | Dear Name, 22 | 23 | Iquias nesed eos is accusam re, sendantiam, simus, que consed eaqui dolor maxim laut estrunt atusandae officid maxim que miliciet molecae. Itatiis quiasi temque nistemp oreheni mpeligni nonsequi il invel es nume suntibustrum qui apero officia etur, adis doluptate num harum dollorem qui te non ra cus mo qui, bla, bla. 24 | 25 | Yours sincerely, 26 | 27 | Mrs Such 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Lettre_01.txt: -------------------------------------------------------------------------------- 1 | 2 | **D. Untel** 3 | *Profession* 4 | 87 rue Ceci-cela, 5 | 1234 Ville 6 | Tel: + 32 (0) 475 418 327 7 | [mail@example.com](mailto:mail@example.com) 8 | 9 | 10 | 11 | 12 | J. Tellautre 13 | Adresse ligne 1 14 | Adresse ligne 2 15 | Code Postal, Ville 16 | 17 | *Ville, le 30 Avril 2020* 18 | 19 | **Référence: #0106** 20 | > Sujet: choisir “Référence” ou “Sujet” 21 | 22 | Cher Monsieur Tellautre, 23 | 24 | 25 | Bla, bla, bla. 26 | 27 | 28 | En vous remerciant de votre diligence, je vous prie de croire, Madame, Monsieur, à l’expression de ma considération distinguée. 29 | 30 | D. Untel 31 | 32 | 33 | -------------------------------------------------------------------------------- /Preview/Sample_invoice_in_iA_Writer_Markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/iA-Writer-Templates/0e71c195744c2d1f08ba605437dac83f51fb89c4/Preview/Sample_invoice_in_iA_Writer_Markdown.png -------------------------------------------------------------------------------- /Preview/iAWriter_Basic_Invoice_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/iA-Writer-Templates/0e71c195744c2d1f08ba605437dac83f51fb89c4/Preview/iAWriter_Basic_Invoice_preview.png -------------------------------------------------------------------------------- /Preview/iAWriter_English_letter_01_template_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/iA-Writer-Templates/0e71c195744c2d1f08ba605437dac83f51fb89c4/Preview/iAWriter_English_letter_01_template_preview.png -------------------------------------------------------------------------------- /Preview/iAWriter_Francais_modele-lettre_01_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/iA-Writer-Templates/0e71c195744c2d1f08ba605437dac83f51fb89c4/Preview/iAWriter_Francais_modele-lettre_01_preview.png -------------------------------------------------------------------------------- /Preview/iAWriter_Scope_of_work_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/iA-Writer-Templates/0e71c195744c2d1f08ba605437dac83f51fb89c4/Preview/iAWriter_Scope_of_work_preview.png -------------------------------------------------------------------------------- /Preview/iAWriter_Scope_of_work_split_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YJPL/iA-Writer-Templates/0e71c195744c2d1f08ba605437dac83f51fb89c4/Preview/iAWriter_Scope_of_work_split_preview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # iA-Writer-Templates 2 | ## Basic Templates for [iA Writer](https://ia.net/writer) 3 | 4 | Written in Markdown with a dash of HTML. 5 | 6 | ### [English letter template](https://github.com/YJPL/iA-Writer-Templates/blob/master/Letter_01.txt) 7 | This is a basic letter sample you can style with any existing [iAWriter template](https://ia.net/writer/templates). 8 | 9 |