{"id":20925313,"url":"https://github.com/apehex/lathex-template","last_synced_at":"2025-07-26T02:36:48.471Z","repository":{"id":111756652,"uuid":"466494733","full_name":"apehex/lathex-template","owner":"apehex","description":"A modern book template for Latex","archived":false,"fork":false,"pushed_at":"2024-04-25T19:28:51.000Z","size":11225,"stargazers_count":49,"open_issues_count":1,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-19T18:09:37.353Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TeX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apehex.png","metadata":{"files":{"readme":".github/README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"publiccode":null,"codemeta":null}},"created_at":"2022-03-05T15:40:00.000Z","updated_at":"2025-01-11T01:59:26.000Z","dependencies_parsed_at":"2024-04-25T20:48:29.669Z","dependency_job_id":null,"html_url":"https://github.com/apehex/lathex-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apehex%2Flathex-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apehex%2Flathex-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apehex%2Flathex-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apehex%2Flathex-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apehex","download_url":"https://codeload.github.com/apehex/lathex-template/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243318758,"owners_count":20272144,"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":[],"created_at":"2024-11-18T20:31:02.047Z","updated_at":"2025-03-13T01:13:59.680Z","avatar_url":"https://github.com/apehex.png","language":"TeX","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LatHeX Template\n\n\u003e A sober, hassle-free, LaTeX template for reports and books.\n\nYou can preview the template on a [real world report][forta-evasion-report].\n\n## Preview\n\n| Dark Theme                                       | Light Theme                                         | Forta Theme                                         |\n| :----------------------------------------------: | :-------------------------------------------------: | :-------------------------------------------------: |\n| [![Dark title page][demo-dark-title]][demo-dark] | [![Light title page][demo-light-title]][demo-light] | [![Forta title page][demo-forta-title]][demo-forta] |\n| [![Dark page][demo-dark-page]][demo-dark]        | [![Light page][demo-light-page]][demo-light]        | [![Forta page][demo-forta-page]][demo-forta]        |\n\n## Usage\n\nThe template is demonstrated with the example document in the repository:\n\n```bash\n# Get the code\ngit clone https://github.com/apehex/lathex-template.git \u0026\u0026 cd lathex-template/\n\n# Build\nlualatex --output-dir build/ demo/book/dark.tex\nmakeindex build/book.idx -s indexstyle.ist\nbiber demo/book/dark.tex\nlualatex --output-dir build/ demo/book/dark.tex\n```\n\nThe recommended compilers are `lualatex` and `xetex`, though `pdflatex` will mostly work too.\nThe only difference will be in the fonts for the `Forta` theme: it imports `ttf` files, which cannot be handled by `pdflatex`.\n\n## Template structure\n\nThe project has the following tree:\n\n```bash\n\u003c PROJECT ROOT \u003e\n   |\n   |-- bibliography/          # The references\n   |\n   |-- build/                 # Where the compiled pdf will pop, as well as temp files\n   |\n   |-- images/                # Assets used in the document\n   |\n   |-- sections/              # All the individual sections\n      |\n      |-- part1/              # The sections of the first part\n      |\n      |-- appendices/         # The appendices at the end of the document\n   |\n   |-- template/              # The actual template definition, independent from the document it presents\n   |\n   |-- context.tex            # Optional script with the metadata (author, revision, date, etc)\n   |\n   |-- main.tex               # The script that assembles all the parts into one document\n```\n\n## Credits\n\nThe syntax highlighting for Solidity has been made by [Sergei Tikhomirov][solidity-syntax-highlighting].\n\nThe rest of the template is original work entirely.\nStill it has roots in the popular LaTeX scripts mentioned below.\n\n### Legrand Orange Book\n\nThe template started from the [Legrand Orange template][legrand-orange-book].\n\n### Latexdraw.com\n\nThe cover page started from the templates in [Latexdraw][latexdraw-cover-pages].\n\n## License\n\nThis work is licensed under the GNU [aGPL v3](LICENSE).\n\n---\n\n[demo-dark]: ../build/dark.pdf\n[demo-forta]: ../build/forta.pdf\n[demo-light]: ../build/light.pdf\n[demo-dark-page]: ../images/dark-page.png\n[demo-forta-page]: ../images/forta-page.png\n[demo-light-page]: ../images/light-page.png\n[demo-dark-title]: ../images/dark-title.png\n[demo-forta-title]: ../images/forta-title.png\n[demo-light-title]: ../images/light-title.png\n[forta-evasion-report]: https://github.com/apehex/web3-evasion-techniques/blob/main/report/forta.pdf\n[latexdraw-cover-pages]: https://latexdraw.com/tikz-cover-pages-gallery/\n[legrand-orange-book]: https://www.latextemplates.com/template/legrand-orange-book\n[solidity-syntax-highlighting]: https://github.com/s-tikhomirov/solidity-latex-highlighting\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapehex%2Flathex-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapehex%2Flathex-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapehex%2Flathex-template/lists"}