{"id":28458847,"url":"https://github.com/zestedesavoir/latex-template","last_synced_at":"2025-07-02T09:31:31.779Z","repository":{"id":51321233,"uuid":"92683275","full_name":"zestedesavoir/latex-template","owner":"zestedesavoir","description":"LaTeX template used for PDF exports","archived":false,"fork":false,"pushed_at":"2024-04-23T19:34:51.000Z","size":403,"stargazers_count":16,"open_issues_count":6,"forks_count":19,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-06-07T00:41:16.170Z","etag":null,"topics":["latex"],"latest_commit_sha":null,"homepage":null,"language":"TeX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zestedesavoir.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE-MIT","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2017-05-28T19:46:12.000Z","updated_at":"2024-04-23T19:34:56.000Z","dependencies_parsed_at":"2024-04-22T19:03:50.876Z","dependency_job_id":"2a645e19-5d81-4fff-98e7-b21964419c94","html_url":"https://github.com/zestedesavoir/latex-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zestedesavoir/latex-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zestedesavoir%2Flatex-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zestedesavoir%2Flatex-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zestedesavoir%2Flatex-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zestedesavoir%2Flatex-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zestedesavoir","download_url":"https://codeload.github.com/zestedesavoir/latex-template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zestedesavoir%2Flatex-template/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263111432,"owners_count":23415454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["latex"],"created_at":"2025-06-07T00:40:06.844Z","updated_at":"2025-07-02T09:31:31.769Z","avatar_url":"https://github.com/zestedesavoir.png","language":"TeX","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Travis status](https://travis-ci.org/zestedesavoir/latex-template.svg?branch=master)](https://travis-ci.org/zestedesavoir/latex-template#)\n\n# About\n\nThis is a proposal for the [zmarkown](https://github.com/zestedesavoir/zmarkdown) template to help compile Markdown to LaTeX.\n\nCredits go to :\n\n+ [Karnaj](https://github.com/Karnaj), for the original template and many improvements.\n+ [Heziode](https://github.com/Heziode), for later improvements.\n+ [pierre-24](https://github.com/pierre-24), maintainer of the repository.\n\n# Installation\n\n## Basics\n\nYou need a standard (full) LaTeX distribution:\n\n+ Windows: [MikTeX](https://miktex.org/download)\n+ Mac OS X: [MacTeX](https://www.tug.org/mactex/mactex-download.html)\n+ Linux: [TeXLive](https://tug.org/texlive/) is probably available in your favorite package manager.\n\nSince this template uses the [minted](https://github.com/gpoore/minted/) package you also need [Pygments](http://pygments.org/), probably available in your package manager on Linux or via `pip`:\n\n```bash\npip install Pygments\n```\n\nYou also need these fonts:\n\n- [Source Code Pro](https://www.fontsquirrel.com/fonts/source-code-pro)\n- [Source Sans Pro](https://www.fontsquirrel.com/fonts/source-sans-pro)\n\n## Other images formats\n\nTo be able to use GIF and SVG images in your documents, two extra programs are needed:\n\n+ [librsvg](https://github.com/GNOME/librsvg), which uses cairo to convert svg to pdf, and is available under the name `librsvg2-bin` in many package managers ; \n+ The `convert` program, part of the [imagemagick](http://www.imagemagick.org/) tools suite, to convert GIF to PNG. It is probably also available in your package manager.\n\n## Package installation\n\nIf you are a developer wanting to help, you can clone this package anywhere and just use the Makefile to run the tests (see [`CONTRIBUTING.md`](./CONTRIBUTING.md)).\n\nTo use this package normally, you need to clone it into your `TXMFHOME/tex/latex/` directory (you can know to which location `TXMFHOME` corresponds by running `kpsewhich -var-value TEXMFHOME`, but probably `$HOME/texmf/`). \nNote that you don't need to run `texhash`. \nMore information is given for example [here](https://faculty.math.illinois.edu/~hildebr/tex/tips-customstyles.html).\n\nThis repo uses submodules. After clone this repo, in root folder of the project, execute this command to download the submodules: `git submodule update --init --recursive`.\n\nNote that this package requires `lualatex` to be called with the `-shell-escape` option (because of minted).\n\n# Testing and using\n\nThe different macros and environment are defined in [`zmdocument.cls`](./zmdocument.cls) and documented in [`documentation.md`](./documentation.md).\nHere is a skeleton on what your LaTeX document should contain:\n\n```latex\n\\documentclass{zmdocument}\n\n\\title{Title}\n\\author{Author}\n\\licence[path/to/image]{Licence name}{URL} % optional\n\\logo{logo.png}  % if ./logo.png is available\n\n\\begin{document}\n\\maketitle\n\\tableofcontents\n\n%% ... The rest of your document\n\\end{document}\n```\n\nSee [the `test.tex` file in tests](./tests/test.tex) for an example usage of the document class.\n\n\n# Contributing\n\nSee [`CONTRIBUTING.md`](./CONTRIBUTING.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzestedesavoir%2Flatex-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzestedesavoir%2Flatex-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzestedesavoir%2Flatex-template/lists"}