├── .codeclimate.yml ├── .github └── workflows │ ├── awesome-bot.yml │ ├── awesome-lint.yml │ └── links.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md └── fig ├── apple.svg ├── foss.svg ├── linux.svg └── windows.svg /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | engines: 2 | fixme: 3 | enabled: true 4 | markdownlint: 5 | enabled: true 6 | checks: 7 | MD013: # allow line length > 80 chars 8 | enabled: false 9 | MD025: # allow multiple H1 headers 10 | enabled: false 11 | ratings: 12 | paths: [] 13 | exclude_paths: 14 | - "LICENSE.md" 15 | -------------------------------------------------------------------------------- /.github/workflows/awesome-bot.yml: -------------------------------------------------------------------------------- 1 | name: awesome-bot 2 | 3 | on: 4 | push: 5 | pull_request: 6 | schedule: 7 | - cron: 5 4 * * 5 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: Set up Ruby 2.6 17 | uses: ruby/setup-ruby@v1 18 | with: 19 | ruby-version: 2.6.9 20 | - name: Checks 21 | run: | 22 | gem install awesome_bot 23 | awesome_bot README.md --allow-ssl -a 302,429,301 -w https://www.latex-project.org/,https://github.com/sindresorhus/awesome 24 | -------------------------------------------------------------------------------- /.github/workflows/awesome-lint.yml: -------------------------------------------------------------------------------- 1 | name: awesome-lint 2 | on: 3 | pull_request: 4 | branches: [master] 5 | pull: 6 | branches: [master] 7 | jobs: 8 | Awesome_Lint: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v2 12 | with: 13 | fetch-depth: 0 14 | - run: npx awesome-lint -------------------------------------------------------------------------------- /.github/workflows/links.yml: -------------------------------------------------------------------------------- 1 | name: Links 2 | 3 | on: 4 | schedule: 5 | # Run at 00:00 UTC every Sunday 6 | - cron: '0 0 * * */7' 7 | push: 8 | branches: 9 | - master 10 | 11 | env: 12 | FORCE_COLOR: 1 13 | 14 | jobs: 15 | build: 16 | runs-on: ubuntu-latest 17 | 18 | steps: 19 | - uses: actions/checkout@v2 20 | 21 | - name: Find markdown files 22 | shell: bash 23 | run: | 24 | echo 'FILES_TO_CHECK<> $GITHUB_ENV 25 | 26 | # $GITHUB_WORKSPACE is where our files live 27 | # Ignore dirs and only include markdown files 28 | 29 | files_to_check=$(find $GITHUB_WORKSPACE -type f \ 30 | -not -path '*/\.git/*' -not -path '*/\.github/*' \ 31 | -name "*.md") 32 | 33 | echo $files_to_check >> $GITHUB_ENV 34 | echo 'EOF' >> $GITHUB_ENV 35 | 36 | - name: Validate that links are up 37 | uses: simeg/urlsup-action@v1.0.0 38 | with: 39 | args: ${{ env.FILES_TO_CHECK }} --threads 10 40 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | These guidelines have been adapted from [awesome CONTRIBUTING](https://github.com/sindresorhus/awesome/blob/master/contributing.md) and the [awesome manifesto](https://github.com/sindresorhus/awesome/blob/master/awesome.md). 2 | 3 | # Contribution Guidelines 4 | 5 | ## Table of Contents 6 | 7 | - [Adding to this list](#adding-to-this-list) 8 | - [Only awesome is awesome](#only-awesome-is-awesome) 9 | - [Comment on why something is awesome](#comment-on-why-something-is-awesome) 10 | - [Guidelines](#guidelines) 11 | 12 | ## Adding to this list 13 | 14 | If you want something to be included on `awesome-LaTeX`, try to only add actual awesome stuff in your pull requests. After all, it's a curation, not a collection. 15 | 16 | But **what is awesome?** 17 | 18 | ## Only awesome is awesome 19 | 20 | Research if the stuff you're including is actually awesome. Put only stuff on the list you can personally recommend and rather leave stuff out than include too much. 21 | 22 | ## Comment on why something is awesome 23 | 24 | Apart from suggesting a particular item, you should also inform your readers *why* it's on the list and how they will benefit from it. 25 | 26 | ## Guidelines 27 | 28 | Please ensure your pull request adheres to the following guidelines: 29 | 30 | - Search previous suggestions before making a new one, as yours may be a duplicate. 31 | - Please only add/remove one (1) item per commit. 32 | - Please ensure your items are formatted consistently with the rest, e.g. as `[List Name](link) - description.` 33 | - Link additions should be added to the bottom of the relevant category. 34 | - New categories or improvements to the existing categorization are welcome. 35 | - Please update the table of contents as needed. 36 | - Check your spelling and grammar. 37 | - Make sure your text editor is set to remove trailing whitespace. 38 | - Self-promotion can be okay, but _only_ if you clearly state your involvement. 39 | - The pull request and commit should have a useful title. 40 | 41 | Finally, **thank you for your suggestions!** 42 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | > This render of the [CC-BY-SA 4.0 license](http://creativecommons.org/licenses/by-sa/4.0/) has been gratefully adapted from [Creative Commons Markdown](https://github.com/idleberg/Creative-Commons-Markdown). 2 | 3 | --- 4 | 5 | > # Attribution-ShareAlike 4.0 International 6 | > 7 | > Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. 8 | > 9 | > ## Using Creative Commons Public Licenses 10 | > 11 | > Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses. 12 | > 13 | > * __Considerations for licensors:__ Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. [More considerations for licensors](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensors). 14 | 15 | > * __Considerations for the public:__ By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. [More considerations for the public](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensees). 16 | 17 | # Creative Commons Attribution-ShareAlike 4.0 International Public License 18 | 19 | By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. 20 | 21 | ## Section 1 – Definitions. 22 | 23 | - a. __Adapted Material__ means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. 24 | 25 | - b. __Adapter's License__ means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. 26 | 27 | - c. __BY-SA Compatible License__ means a license listed at [creativecommons.org/compatiblelicenses](http://creativecommons.org/compatiblelicenses), approved by Creative Commons as essentially the equivalent of this Public License. 28 | 29 | - d. __Copyright and Similar Rights__ means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. 30 | 31 | - e. __Effective Technological Measures__ means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. 32 | 33 | - f. __Exceptions and Limitations__ means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. 34 | 35 | - g. __License Elements__ means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike. 36 | 37 | - h. __Licensed Material__ means the artistic or literary work, database, or other material to which the Licensor applied this Public License. 38 | 39 | - i. __Licensed Rights__ means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. 40 | 41 | - j. __Licensor__ means the individual(s) or entity(ies) granting rights under this Public License. 42 | 43 | - k. __Share__ means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. 44 | 45 | - l. __Sui Generis Database Rights__ means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. 46 | 47 | - m. __You__ means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. 48 | 49 | ## Section 2 – Scope. 50 | 51 | ### a. ___License grant.___ 52 | 53 | 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: 54 | 55 | A. reproduce and Share the Licensed Material, in whole or in part; and 56 | 57 | B. produce, reproduce, and Share Adapted Material. 58 | 59 | 2. __Exceptions and Limitations.__ For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. 60 | 61 | 3. __Term.__ The term of this Public License is specified in Section 6(a). 62 | 63 | 4. __Media and formats; technical modifications allowed.__ The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. 64 | 65 | 5. __Downstream recipients.__ 66 | 67 | A. __Offer from the Licensor – Licensed Material.__ Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. 68 | 69 | B. __Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply. 70 | 71 | C. __No downstream restrictions.__ You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. 72 | 73 | 6. __No endorsement.__ Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). 74 | 75 | ### b. ___Other rights.___ 76 | 77 | 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. 78 | 79 | 2. Patent and trademark rights are not licensed under this Public License. 80 | 81 | 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. 82 | 83 | ## Section 3 – License Conditions. 84 | 85 | Your exercise of the Licensed Rights is expressly made subject to the following conditions. 86 | 87 | ### a. ___Attribution.___ 88 | 89 | 1. If You Share the Licensed Material (including in modified form), You must: 90 | 91 | A. retain the following if it is supplied by the Licensor with the Licensed Material: 92 | 93 | - i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); 94 | 95 | - ii. a copyright notice; 96 | 97 | - iii. a notice that refers to this Public License; 98 | 99 | - iv. a notice that refers to the disclaimer of warranties; 100 | 101 | - v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable; 102 | 103 | B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and 104 | 105 | C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. 106 | 107 | 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. 108 | 109 | 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. 110 | 111 | ### b. ___ShareAlike.___ 112 | 113 | In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply. 114 | 115 | 1. The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License. 116 | 117 | 2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material. 118 | 119 | 3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply. 120 | 121 | ## Section 4 – Sui Generis Database Rights. 122 | 123 | Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: 124 | 125 | - a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; 126 | 127 | - b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and 128 | 129 | - c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. 130 | 131 | For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. 132 | 133 | ## Section 5 – Disclaimer of Warranties and Limitation of Liability. 134 | 135 | - a. __Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.__ 136 | 137 | - b. __To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.__ 138 | 139 | - c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. 140 | 141 | ## Section 6 – Term and Termination. 142 | 143 | - a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. 144 | 145 | - b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: 146 | 147 | 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or 148 | 149 | 2. upon express reinstatement by the Licensor. 150 | 151 | For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. 152 | 153 | - c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. 154 | 155 | - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. 156 | 157 | ## Section 7 – Other Terms and Conditions. 158 | 159 | - a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. 160 | 161 | - b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.t stated herein are separate from and independent of the terms and conditions of this Public License. 162 | 163 | ## Section 8 – Interpretation. 164 | 165 | - a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. 166 | 167 | - b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. 168 | 169 | - c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. 170 | 171 | - d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. 172 | 173 | --- 174 | 175 | > Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at [creativecommons.org/policies](https://creativecommons.org/policies), Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. 176 | > 177 | > Creative Commons may be contacted at [creativecommons.org](https://creativecommons.org) 178 | 179 | 180 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome LaTeX [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) [![License: CC BY-SA 4.0](https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg?style=flat)](LICENSE.md) 2 | 3 | [![LaTeX Logo](https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/LaTeX_logo.svg/220px-LaTeX_logo.svg.png)](https://www.latex-project.org/) 4 | 5 | > This is a curated list of awesome stuff for the [(La)TeX typesetting system](https://www.latex-project.org/). 6 | 7 | ## Contents 8 | 9 | 10 | 11 | - [Contents](#contents) 12 | - [Distributions](#distributions) 13 | - [Docker Images](#docker-images) 14 | - [Engines](#engines) 15 | - [LaTeX formulas on the web](#latex-formulas-on-the-web) 16 | - [Editors](#editors) 17 | - [LaTeX-focused](#latex-focused) 18 | - [General purpose text editors](#general-purpose-text-editors) 19 | - [Online editors](#online-editors) 20 | - [Bibliography tools](#bibliography-tools) 21 | - [Build Tools](#build-tools) 22 | - [GitHub Actions](#github-actions) 23 | - [Misc. Tools](#misc-tools) 24 | - [LaTeX-compatible GUI tools](#latex-compatible-gui-tools) 25 | - [Packages](#packages) 26 | - [References](#references) 27 | - [Tables](#tables) 28 | - [Graphics](#graphics) 29 | - [PSTricks](#pstricks) 30 | - [TikZ](#tikz) 31 | - [Source Code](#source-code) 32 | - [Typography](#typography) 33 | - [Presentations, Slides](#presentations-slides) 34 | - [Templates](#templates) 35 | - [Symbols](#symbols) 36 | - [Resources](#resources) 37 | - [Showcases](#showcases) 38 | - [Tutorials](#tutorials) 39 | - [Books](#books) 40 | - [Blogs](#blogs) 41 | - [Social media](#social-media) 42 | - [Meta Awesome-LaTeX](#meta-awesome-latex) 43 | - [Legend](#legend) 44 | 45 | 46 | 47 | ## Learning LaTeX 48 | 49 | Guides how to learn LaTeX 50 | 51 | 52 | ## Distributions 53 | 54 | - [MacTeX](https://tug.org/mactex/) - Most common LaTeX distribution for macOS, basically TeXLive with some Mac-specific tools added. ![mac] 55 | - [TeX Live](https://www.tug.org/texlive/) - Most common LaTeX distribution for Unix-like operating systems, including GNU/Linux. Also works on Windows. ![linux] ![windows] 56 | - [MikTeX](https://miktex.org) - Most common LaTeX distribution for Windows, but also available for Mac, Linux or as Docker image. ![linux] ![windows] ![mac] ![foss] 57 | 58 | ## Docker Images 59 | 60 | When one aims for a ready-to-run LaTeX environment without installing, Docker images might be the choice. 61 | 62 | - [reitzig/texlive-docker](https://github.com/reitzig/texlive-docker) - minimal TeXLive system with package installation possibility 63 | - [Island of TeX/texlive](https://gitlab.com/islandoftex/images/texlive) - debian-based full TeXLive system 64 | - [dante-ev/docker-texlive](https://github.com/dante-ev/docker-texlive) - debian-based full TeXLive system with additions with pandoc, perl, and python pre-installed 65 | 66 | ## Engines 67 | 68 | - [pdfTeX](https://www.tug.org/applications/pdftex/) - TeX compiler that produces PDF files immediately instead of DVI files (nowadays, this is the standard compiler for many users). ![foss] 69 | - [XeTeX](http://xetex.sourceforge.net) - TeX compiler that provides better unicode and font support than TeX/pdfTeX (i.e. you can use the fonts of your operating system instead of only TeX fonts). ![foss] 70 | - [LuaTeX](https://www.luatex.org) - (La)TeX compiler that supports Lua code for scripting and has improved unicode and font support than standard TeX/pdfTeX. ![foss] 71 | - [tectonic](https://tectonic-typesetting.GitHub.io/en-US/) - Modern, self contained (La)TeX compiler powered by XeTeX and TeXLive. ![foss] 72 | 73 | ### LaTeX formulas on the web 74 | 75 | - [Auto-LaTeX Equations with Google Docs](https://sites.google.com/site/autolatexequations) - Render high-quality math equations directly in Google Docs. 76 | - [MathJaX](https://www.mathjax.org) - JavaScript engine to render mathematical formulas on the web. The outcome looks really slick. ![foss] 77 | - [mimeTeX](https://ctan.org/pkg/mimetex) - mimeTeX is a rather old tool to render LaTeX formulas to PNG figures for your web site, without actually needing a LaTeX installation on your server. ![foss] 78 | - [mathTeX](https://ctan.org/pkg/mathtex) - mathTeX is the successor of mimeTeX: it produces nicer-looking images but it requires LaTeX to be installed on your server. ![foss] 79 | - [KaTeX](https://khan.GitHub.io/KaTeX/) - KaTeX is a math rendering library made by Khan Academy focusing on fast load times. All output is processed as plain HTML instead of fixed images. ![foss] 80 | - [Franklin.jl](https://franklinjl.org/) - Static site generator with KaTeX support, code evaluation, LaTeX-like commands and optional pre-rendering, in Julia. ![foss] 81 | - [xhub](https://github.com/nschloe/xhub) - Browser extension that lets you use LaTeX in GitHub pages. ![foss] 82 | 83 | ## Editors 84 | 85 | Because editing LaTeX code with notepad is not awesome. 86 | There are many editors out there, below are the most awesome editors. 87 | A complete list of LaTeX editors is collected at [tex.stackexchange.com](https://tex.stackexchange.com/) as [big list of LaTeX Editors/IDEs](https://tex.stackexchange.com/q/339/9075). 88 | 89 | - [List of popular LaTeX editors](https://tex.stackexchange.com/questions/339/latex-editors-ides) - Community-maintained list of popular LaTeX editors including a screenshot and a short description. 90 | 91 | ### LaTeX-focused 92 | 93 | Some of the most awesome editor for LaTeX do just that: edit LaTeX. 94 | 95 | - [Kile](https://kile.sourceforge.io) - Great LaTeX editor originally from the Linux/KDE community. It runs fine on Windows and macOS as well. ![foss] 96 | - [TeXMaker](https://www.xm1math.net/texmaker/) - Pretty good alternative to Kile. 97 | - [TeXStudio](https://www.texstudio.org) - Cross-platform LaTeX editor that stems from TeXMaker. 98 | - [WinEdt](https://www.winedt.com) - The LaTeX editor many people swear by. Only for ![windows]. 99 | - [TeXnicCenter](https://www.texniccenter.org) - Quite old but free and decent editor for LaTeX. ![windows] 100 | - [LyX](https://www.lyx.org) - Cross-platform WYSIWYM editor that uses LaTeX behind the scenes to render documents. ![foss] 101 | - [TeXShop](https://pages.uoregon.edu/koch/texshop/) - No-nonsense editor for LaTeX documents which is included in MacTeX. ![mac] 102 | - [TeXWorks](https://www.tug.org/texworks/) - No-nonsense editor for LaTeX code, modeled after TeXShop, but this one is cross-platform. ![foss] 103 | - [BakomaTex](https://www.bakoma-tex.com) - Commercial LaTeX editor that allows to edit your document both using its source code and WYSIWYG. 104 | - [Texifier](https://www.texifier.com/) - Commercial LaTeX editor for macOS and iOS, with excellent features (document overview, synchronised PDF display, autocompletion, sync across devices, etc.) that never get in the way of writing. ![mac] 105 | 106 | ### General purpose text editors 107 | 108 | These editors are no one-trick ponies: sure, they edit LaTeX, but they can do a lot more! 109 | 110 | - [Atom](https://atom.io) [![Atom][awesome]](https://github.com/mehcode/awesome-atom) ![foss] 111 | - [LaTeXTools](https://atom.io/packages/latextools) - Atom port of the Sublime Text package of the same name. ![foss] 112 | 113 | - [Sublime Text](https://www.sublimetext.com) [![Sublime Text][awesome]](https://github.com/dreikanter/sublime-bookmarks) 114 | - [LaTeXing](https://github.com/LaTeXing/LaTeXing) - Free plug-in to edit LaTeX. ![foss] 115 | - [LaTeXTools](https://github.com/SublimeText/LaTeXTools) - Free LaTeX plugin for Sublime Text. ![foss] 116 | 117 | - [Emacs](https://www.gnu.org/software/emacs/) [![Emacs][awesome]](https://github.com/emacs-tw/awesome-emacs) ![foss] 118 | - [AucTeX](https://www.gnu.org/software/auctex/) - Emacs plugin for LaTeX that also shows a preview of equations and figures. ![foss] 119 | - [RefTeX](https://www.gnu.org/software/auctex/reftex) - Emacs plugin for LaTeX that adds support for labels, references, and citations. ![foss] 120 | 121 | - [Vim](https://www.vim.org) [![Vim][awesome]](https://github.com/mhinz/vim-galore) ![foss] 122 | - [Vim-LaTeX](http://vim-latex.sourceforge.net) ![foss] 123 | - [LaTeX Live Preview](https://github.com/xuhdev/vim-latex-live-preview) - Instantly previews your LaTeX document. ![foss] 124 | - [vimtex](https://github.com/lervag/vimtex) - Modern vim plugin for editing LaTeX files. Has a variety of features including live preview and forward search. ![foss] 125 | 126 | - [IntelliJ](https://www.jetbrains.com/idea/) 127 | - [TeXiFy-IDEA](https://github.com/Hannah-Sten/TeXiFy-IDEA) - Free LaTeX plugin for IntelliJ IDEA. ![foss] 128 | 129 | - [VS Code](https://code.visualstudio.com/) [![VS Code][awesome]](https://github.com/viatsko/awesome-vscode) ![foss] 130 | - [LaTeX Workshop](https://github.com/James-Yu/LaTeX-Workshop) - LaTeX extension for Visual Studio Code ![foss] 131 | - [LTeX](https://marketplace.visualstudio.com/items?itemName=valentjn.vscode-ltex) - LanguageTool grammar/spell checking ![foss] 132 | - [a-nau/latex-devcontainer](https://github.com/a-nau/latex-devcontainer) - Devcontainer setup for easy LaTeX usage without local installation ![foss] 133 | 134 | ### Online editors 135 | 136 | Online editors that allow you to edit documents collaboratively. 137 | 138 | - [List of popular online LaTeX editors](https://tex.stackexchange.com/questions/3/compiling-documents-online/1654#1654) - Community-maintained list of popular online LaTeX editor including equation editors. 139 | - [Authorea](https://www.authorea.com) - Online editor with built-in git support and bibliography tools. 140 | - [Crixet](https://app.crixet.com) - Online editor with realtime collaboration features. 141 | - [ShareLaTeX](https://www.sharelatex.com) - Has pretty great LaTeX documentation and simple version control. 142 | - [Overleaf](https://www.overleaf.com) - Online editor, also with a WYSIWYM editor and git support. 143 | - [WebLaTeX](https://github.com/sanjib-sen/weblatex) - Web-based vscode with Git Integration + Copilot + Grammar & Spell Checker + Live Collaboration Support based on GitHub Codespace and Dev container. 144 | - [Papeeria](https://papeeria.com) - Online editor with built-in git support. 145 | - [JaxEdit](https://zohooo.GitHub.io/jaxedit/) - Online LaTeX editor with Live Preview and nice presentation mode. 146 | 147 | ## Bibliography tools 148 | 149 | - [JabRef](https://www.jabref.org) - Very powerful cross-platform (Java) bibtex editor. ![mac] ![windows] ![linux] ![foss] 150 | - [Papis](https://github.com/papis/papis) - Extremely customizable, 151 | powerful and simple cross-platform (Python) library manager. It has a very 152 | complete Command-Line-Interface, several GUIs and scripting capability. 153 | ![linux] ![mac] ![foss] 154 | - [Bibdesk](http://bibdesk.sourceforge.net) - Great bibliography editor for ![mac]. 155 | - [Zotero](https://www.zotero.org) - Reference manager for your browser that also exports to bibtex and integrates with many LaTeX editors. ![mac] ![windows] ![linux] ![foss] 156 | - [Mendeley](https://www.mendeley.com) - Both an app and cloud client to manage your references and PDFs. Can sync out to a bibtex file for your LaTeX workflow. ![mac] ![windows] ![linux] 157 | - [betterbib](https://github.com/nschloe/betterbib) - Command-line utility for improving your BibTeX files. Fetches information from online sources. ![mac] ![windows] ![linux] ![foss] 158 | 159 | ## Build Tools 160 | 161 | Compiling LaTeX documents can be tedious, build tools help you to manage the compilation process. 162 | 163 | - [Arara](https://www.ctan.org/pkg/arara) ([GitHub repo](https://github.com/islandoftex/arara)) - Simple tool that allows you to specify which tools to call inside your document and it can be extended quite easily. ![foss] 164 | - [latexmk](https://www.ctan.org/pkg/latexmk) - Build tool that is the commonly used by many LaTeX editors (LaTeXing, TeXShop, etc.) to build your LaTeX files. ![foss] 165 | 166 | ### GitHub Actions 167 | 168 | - [xu-cheng/latex-action](https://github.com/xu-cheng/latex-action) - GitHub Action to compile LaTeX documents 169 | - [dante-ev/latex-action](https://github.com/dante-ev/latex-action) - DANTE e.V.'s GitHub action to compile LaTeX documents. Offers a full TeXLive and pre-installed perl and python. 170 | 171 | ## Misc. Tools 172 | 173 | - [CaTeX](https://github.com/Alexis-benoist/CaTeX) - Concatenates LaTeX documents with attention for properly merging the preamble. 174 | - [Pandoc](https://pandoc.org) - This program converts almost any document format (LaTeX, DOC, markdown, etc.) to almost any other format. A great tool to aid workflows where multiple formats are used. ![foss] 175 | 176 | ### Quality Check Tools 177 | 178 | - [ChkTeX](https://www.nongnu.org/chktex/) - Linter / code checker for LaTeX documents. ![foss] 179 | - [blacktex](https://github.com/nschloe/blacktex) - Command-line tool that replaces commonly occurring LaTeX anti-patterns and cleans up your files. ![windows] ![linux] ![mac] ![foss] 180 | - [TeXtidote](https://github.com/sylvainhalle/textidote) - A cross-platform (Java) spelling, grammar and style checker for LaTeX documents. ![windows] ![linux] ![mac] ![foss] 181 | 182 | ### Tools centered around equations 183 | 184 | - [Codecogs Eqn Editor](https://editor.codecogs.com/) - Online LaTeX equation editor that allows you to produce figures containing an equation. 185 | - [EqualX](https://equalx.sourceforge.io/) - Graphical LaTeX formula editor. ![windows] ![linux] ![foss] 186 | - [KLaTeXFormula](https://klatexformula.sourceforge.io) - Cross-platform alternative for LaTeXit. ![foss] 187 | - [Laeqed](https://www.thrysoee.dk/laeqed/) - Crossplatform LaTeX formula to PNG convertor. ![windows] ![linux] ![mac] ![foss] 188 | - [LaTeXEqEdit](http://latexeqedit.sourceforge.net/) - LaTeX formula editor for Windows. ![windows] ![foss] 189 | - [LaTeXiT](https://www.chachatelier.fr/latexit/) - LaTeXit is an equation editor that makes it easy to drag-and-drop rendered equations (as PDF, PNG, etc.) into your non-LaTeX documents on the Mac. ![mac] 190 | - [pix2tex](https://lukas-blecher.github.io/LaTeX-OCR/) - LaTeX OCR ![windows] ![linux] ![mac] ![foss] 191 | 192 | ## LaTeX-compatible GUI tools 193 | 194 | - [TikzEdt](https://www.tikzedt.org) (also: [GitHub repo](https://github.com/hchapman/tikzedt)) - WYSIWYG and text-based editor for TikZ pictures. ![foss] 195 | - [TikZ-Editor](https://github.com/fredokun/TikZ-Editor) - Live-previewing editor for TikZ figures. ![mac] ![linux] ![foss] 196 | - [IPE](https://ipe.otfried.org) - Drawing tool that integrates well with LaTeX commands and documents. ![foss] 197 | - [GeoGebra](https://www.geogebra.org/) - Cross-platform geometry tool with output to TikZ. ![foss] 198 | - [Dia](https://wiki.gnome.org/Apps/Dia) - Cross-platform diagramming tool that can export to PSTricks and MetaPost code. ![foss] 199 | - [TikZiT](https://tikzit.GitHub.io) - GUI tool for creating graphs and string diagrams using PGF/TikZ. ![windows] ![linux] ![mac] ![foss] 200 | - [LaTeXDraw](https://latexdraw.sourceforge.net/) - Vector-based drawing tool having LaTeX as first-class citizen. ![windows] ![linux] ![mac] ![foss] 201 | 202 | ## Packages 203 | 204 | - [CTAN](https://www.ctan.org) - The Comprehensive TeX Archive Network is the place to look for useful packages and documentation. 205 | 206 | ### References 207 | 208 | - [Cross-reference packages explained](https://tex.stackexchange.com/a/36312/9075) - Elaboration on cross-reference packages (cleveref, varioref, theoremref, nameref, etc.): Which to use, which conflict? 209 | 210 | ### Tables 211 | 212 | - [Excel2LaTeX](https://www.ctan.org/pkg/excel2latex?lang=en) - Excel (2010 and older) macros to produce LaTeX `tabular` code. ![windows] ![mac] 213 | - [csv2latex](http://freshmeat.sourceforge.net/projects/csv2latex) - Converts CSV files from your favorite programs to LaTeX `tabular`s. ![linux] ![mac] 214 | - [Tables Generator](https://www.tablesgenerator.com) - This website provides a graphical interface to input your table and produces properly-formatted code for LaTeX, Markdown, HTML, etc. 215 | - [pgfplotstable](https://www.ctan.org/pkg/pgfplotstable?lang=en) - This package displays numerical tables rounded to desired precision in various display formats. It can even read CSV files to include directly in your LaTeX document. 216 | 217 | ### Graphics 218 | 219 | #### PSTricks 220 | 221 | PSTricks is a great library to draw figures for inclusion in PostScript/DVI files. 222 | 223 | #### TikZ 224 | 225 | TikZ is an awesome package with many plugins that allow you to create figures from within your LaTeX documents. 226 | Typically, it is easier to get to work with `pdflatex` than PSTricks is. 227 | 228 | - [TeXample](https://www.texample.net) - Blog about LaTeX, with a big collection of TikZ figures. 229 | - [LaTeX en SI](https://sciences-indus-cpge.papanicola.info/-LaTeX-en-SI-) - Useful website with some custom packages to draw special plots (Bode, Nyquist, electrical schematics, block schematics, etc.) using TikZ. Note that everything is in French. 230 | - [pgfplots](http://pgfplots.sourceforge.net) - Truly awesome plotting library on top of and in the style of TikZ/pgf. This library can load in CSV data files, perform some calculations and create beautiful plots. 231 | - [A very minimal introduction to TikZ (PDF)](https://cremeronline.com/LaTeX/minimaltikz.pdf) - Short introductory document to the world of TikZ, written by Jacques Crémer. 232 | - [PetarV-/TikZ](https://github.com/PetarV-/TikZ) - Collection of publication-ready PGF/TikZ figures by Petar Veličković. 233 | - [matlab2tikz](https://github.com/matlab2tikz/matlab2tikz) - Convert your MATLAB plots to PGFPlots/TikZ. ![windows] ![linux] ![mac] ![foss] 234 | - [tikzplotlib](https://github.com/nschloe/tikzplotlib) - Convert your matplotlib plots to PGFPlots/TikZ. ![windows] ![linux] ![mac] ![foss] 235 | - [TikZBlog](https://latexdraw.com) - Step-by-Step Tutorials about How to Draw Illustrations in LaTeX. 236 | 237 | ### Source Code 238 | 239 | - [minted](https://www.ctan.org/pkg/minted) - The minted package uses [pygments](https://pygments.org/) to generate the listings. In this way, LaTeX is able to format more than 300 programming and markup languages and other text formats. 240 | 241 | ### Typography 242 | 243 | - [microtype](https://ctan.org/pkg/microtype) - This package improves the appearance of your documents by enabling margin kerning and font expansion. 244 | 245 | ### Presentations, Slides 246 | 247 | - [nics](https://nics.nilcons.com/) - An opinionated alternative to Beamer, that we created with the hopes to make common tasks very easy and beautifully rendered by default. Has awesome documentation and a detailed cheatsheet to help you getting started. 248 | 249 | ## Templates 250 | 251 | - [LaTeX templates](https://www.latextemplates.com) - Collection of templates for papers, posters, resumés, theses, books, presentations, … for LaTeX. 252 | - [Ultimate Beamer Theme List](https://github.com/martinbjeldbak/ultimate-beamer-theme-list) - Links to various beamer themes along with PDF previews. 253 | - [LaTeX Beamer Theme Overview](https://github.com/UweZiegenhagen/LaTeX-Beamer-Theme-Overview/blob/main/OVERVIEW.md) - Visual overview of beamer themes included in TeXLive 254 | 255 | ## Symbols 256 | 257 | - [Comprehensive LaTeX symbol list](https://www.ctan.org/tex-archive/info/symbols/comprehensive/) - Very extensive list of symbols for LaTeX. Available in [A4](https://mirrors.ctan.org/info/symbols/comprehensive/symbols-a4.pdf) and [letter](https://mirrors.ctan.org/info/symbols/comprehensive/symbols-letter.pdf) sizes. 258 | - [Detexify](https://detexify.kirelabs.org/classify.html) - You draw the symbol and this site/app will tell you the LaTeX command. 259 | 260 | ## Resources 261 | 262 | - [TUG](https://www.tug.org) - The TeX User Group is a way to get in touch with other (La)TeX users. 263 | - [TeXDoc](https://texdoc.net) - Online interface to the `texdoc` utility to browse LaTeX packages and documentation. 264 | - [Dickimaw Books: LaTeX resources](https://www.dickimaw-books.com/latexresources.html) - Great overview of resources useful for LaTeX. 265 | - [LaTeX cookbook](https://latex-cookbook.net) - Sibling of TeXample, contains quite a bit of example code. 266 | - [Visual FAQ](https://ctan.org/pkg/visualfaq) - Typesetting issues and a link to appropriate TeX FAQ answers. 267 | - [MartinThoma's LaTeX example](https://github.com/MartinThoma/LaTeX-examples/) - GitHub repository containing example LaTeX documents. 268 | - [LaTeX community](https://latex.org/forum) - Forum about LaTeX. 269 | - German: [Neue TeX FAQ](https://texfragen.de) - Modern and updated LaTeX FAQ in German. 270 | - [BibTeX Style Examples](http://www.cs.stir.ac.uk/~kjt/software/latex/showbst.html) - Example output of common BibTeX styles (BST files). 271 | - [TeX World](https://tex.world/) - Websites supported by the TeX Users Group, DANTE, and GUTenberg. 272 | - [TeXnique](https://texnique.xyz) - A LaTeX Typesetting Game. 273 | 274 | ## Showcases 275 | 276 | - [Showcase of beautiful typography done in TeX & friends](https://tex.stackexchange.com/questions/1319/showcase-of-beautiful-typography-done-in-tex-friends) - Set of examples demonstrating the power of LaTeX. 277 | - [Showcase of beautiful invitations in TeX](https://tex.stackexchange.com/q/281415/9075) - Showcase of invitations typeset using LaTeX. 278 | - [Showcase of "programming your document" paradigm](https://tex.stackexchange.com/q/219774/9075) - Collection of LaTeX documents demonstrating how LaTeX can be used like a programming language. 279 | - [TUG: TeX showcase](https://www.tug.org/texshowcase/) - Website from the TUG that shows some examples of what LaTeX can do. 280 | - [Awesome LaTeX drawing](https://github.com/xinychen/awesome-latex-drawing) - Curated list of academic drawing examples for using LaTeX 281 | 282 | ## Tutorials 283 | 284 | - [LearnLaTeX.org](https://www.learnlatex.org/) - Browser-based LaTeX tutorial. 285 | - [The (Not So) Short Introduction to LaTeX2e](https://mirrors.ctan.org/info/lshort/english/lshort.pdf) - Very comprehensive introduction to LaTeX. 286 | - [Begin LaTeX in minutes](https://github.com/luong-komorebi/Begin-Latex-in-minutes) - Brief intro to LaTeX for beginners that helps you use LaTeX with ease. 287 | - [Getting to Grips with LaTeX](https://www.andy-roberts.net/writing/latex) - Complete guide going through the majority of things you need to know about LaTeX. 288 | - [LaTeX introductions in languages other than English](https://tex.stackexchange.com/questions/84384/latex-introductions-in-languages-other-than-english/84385) - Collection of introductions in many languages. 289 | 290 | ## Books 291 | 292 | - [Wikibooks: LaTeX](https://en.wikibooks.org/wiki/LaTeX) - The LaTeX wikibook. Not really a paper book, but it is equally extensive. 293 | - [The LaTeX Companion, F. Mittelbach (2004)](https://www.informit.com/store/latex-companion-9780201362992) 294 | - [LaTeX Graphics Companion, M. Goossens (2007)](https://www.informit.com/store/latex-graphics-companion-9780321508928) 295 | - [TeX by Topic (2007)](https://ctan.org/pkg/texbytopic) 296 | - [TeX for the Impatient (2020)](https://ctan.org/pkg/impatient) 297 | - [Formatting Information (2020)](https://latex.silmaril.ie/formattinginformation) - This is the HTML5-based online version of the book *Formatting Information - An introduction to typesetting with LATEX*. It has been continuously updated since the early 2000s. 298 | 299 | ## Blogs 300 | 301 | - [TeXblog](https://texblog.net) - Blog about LaTeX and everything related. 302 | - [texblog.org](https://texblog.org) - Blog on LaTeX and related topics (tutorials, packages, code snippets, etc.). 303 | - [TeX Talk](https://tex-talk.net) - Blog for the TeX Stack Exchange site with news and interviews. 304 | - [TeX Hour](https://texhour.github.io/) - A weekly video meeting 305 | 306 | ## Social media 307 | 308 | - [LinkedIn: TeX/LaTeX User Group](https://www.linkedin.com/groups/1600297) 309 | - [Twitter: @TeXtip](https://twitter.com/TeXtip) - Tips related to (La)TeX by [John D. Cook](https://www.johndcook.com/). 310 | - [TeX.StackExchange](https://tex.stackexchange.com) - StackExchange TeX section. 311 | - [TopAnswers TeX](https://topanswers.xyz/tex) - a free and open source Q&A site for TeX and friends 312 | 313 | --- 314 | 315 | 316 | 317 | ## Meta Awesome-LaTeX 318 | 319 | If you want to contribute, please do read our [CONTRIBUTING](CONTRIBUTING.md) guidelines. 320 | 321 | ## Legend 322 | 323 | The icons indicating Mac, Linux and Windows compatibility show when a program is *only* available for those platforms. So absence of those icons means that the software is fully cross-platform. 324 | 325 | | Logo | Description | 326 | |:-------------------:|:-------------------------------------------------------| 327 | | ![mac] | [macOS](https://www.apple.com/macos) | 328 | | ![linux] | [GNU/Linux](https://www.gnu.org) | 329 | | ![windows] | [Microsoft Windows](https://www.microsoft.com/windows) | 330 | | ![FOSS] | [Free Open-Source Software](https://opensource.org) | 331 | 332 | --- 333 | 334 | All trademarks are property of their respective owners. 335 | 336 | [mac]: https://cdn.jsdelivr.net/gh/egeerardyn/awesome-LaTeX@700138fe725574e1741f148df6d1f77a8aa07eee/fig/apple.svg 337 | [linux]: https://cdn.jsdelivr.net/gh/egeerardyn/awesome-LaTeX@700138fe725574e1741f148df6d1f77a8aa07eee/fig/linux.svg 338 | [windows]: https://cdn.jsdelivr.net/gh/egeerardyn/awesome-LaTeX@700138fe725574e1741f148df6d1f77a8aa07eee/fig/windows.svg 339 | [foss]: https://cdn.jsdelivr.net/gh/egeerardyn/awesome-LaTeX@700138fe725574e1741f148df6d1f77a8aa07eee/fig/foss.svg 340 | [awesome]: https://cdn.jsdelivr.net/gh/sindresorhus/awesome@d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg 341 | -------------------------------------------------------------------------------- /fig/apple.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fig/foss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /fig/windows.svg: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------