{"id":15203207,"url":"https://github.com/dlesbre/tex","last_synced_at":"2026-02-17T03:04:55.034Z","repository":{"id":67652684,"uuid":"352382177","full_name":"dlesbre/tex","owner":"dlesbre","description":"LaTeX style files, templates and helper scripts","archived":false,"fork":false,"pushed_at":"2025-03-20T09:06:39.000Z","size":319,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-11T01:41:51.054Z","etag":null,"topics":["latex","latex-beamer","latex-package","tex"],"latest_commit_sha":null,"homepage":"","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/dlesbre.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"zenodo":null}},"created_at":"2021-03-28T16:39:35.000Z","updated_at":"2025-03-20T09:06:42.000Z","dependencies_parsed_at":"2024-11-12T09:23:29.829Z","dependency_job_id":"425ba8d9-757c-41ce-bb0d-a639edcfc38a","html_url":"https://github.com/dlesbre/tex","commit_stats":{"total_commits":95,"total_committers":3,"mean_commits":"31.666666666666668","dds":"0.021052631578947323","last_synced_commit":"bb2623960b38ead2d2ce7a5292e385787564b2e5"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dlesbre/tex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dlesbre%2Ftex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dlesbre%2Ftex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dlesbre%2Ftex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dlesbre%2Ftex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dlesbre","download_url":"https://codeload.github.com/dlesbre/tex/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dlesbre%2Ftex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29532422,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T03:01:11.216Z","status":"ssl_error","status_checked_at":"2026-02-17T03:00:31.803Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","latex-beamer","latex-package","tex"],"created_at":"2024-09-28T04:42:08.522Z","updated_at":"2026-02-17T03:04:55.010Z","avatar_url":"https://github.com/dlesbre.png","language":"TeX","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LaTeX files\n\nThis repository contains files I use for LaTeX and beamer styling, as well\nas simple document templates.\n\n## Installation\n\nFor use with a simple documents, simply place the `.sty` files you need in\nthe same folder as your `.tex` document\n\nFor general use on Linux, place the `.sty` files in `~/texmf/tex/latex/` or any subdirectory thereof.\n\nTo install the script, add an `alias texmgr='path/to/texmgr'` to your `~/.bashrc`.\n\n## Contents\n\n**Color theme:**\n- [styles/beamercolorthemeeye.sty](./styles/beamercolorthemeeye.sty): The eye color theme for beamer metropolis (dark blue, dark red, dark green, yellow or cyan). See [previews](./previews) for sample pdf ouputs.\n\n**Style files:**\n- [styles/my-preamble.sty](./styles/my-preamble.sty): common imports and some useful functions\n- [styles/my-math.sty](./styles/my-math.sty): math shortcut definitions, theorems and operators\n- [styles/my-metropolis.sty](./styles/my-math.sty): configures beamer metropolis to add section pages\n\n**Templates:** simple prefilled document to avoid retyping common things\n- [templates/document.tex](./template/document.tex)\n- [templates/beamer.tex](./template/document.tex)\n\n**Scripts:**\n- [scripts/texmgr.py](scripts/texmgr.py): python script to compile/initialize and clean texfiles.\n- [scripts/texmgr](scripts/texmgr): executable that calls the `texmgr.py` script's `main`\n\n\t\tUsage: texmgr [--flags] [file list]\n\n\t\tCompiles all files in the file list (defaut, all *.tex files\n\t\tin current working directory).\n\t\tCompiles once, runs bibtex, then compiles twice.\n\n\t\tFlags:\n\t\t  -n --no-clean     don't remove build files after compiling\n\n\t\t  -i --init         doesn't compile, creates files in file list\n\t\t  -b --init-beamer  same as --init, but uses the beamer template to create files\n\t\t  -t --open-tex     doesn't compile, opens tex files in editor (can run with -i/-b)\n\t\t  -p --open-pdf     compiles and opens PDF files in viewer\n\n\t\t  -w --watch        watches the tex file and recompiles when it is changed\n\t\t  -l --clean-last   only clean build files when watcher is stopped\n\t\t  -f --find-deps    print dependencies (\\input{...}) of a LaTeX file\n\n\t\t  -c --clean        doesn't compile, removes build files\n\t\t                    Files removed match a .tex file in the list\n\t\t                    and have the following extensions:\n\t\t                      aux, bak, bbl, blg, fdb_latexmk, fls, log, nav, out, snm, synctex.gz, synctez.gz, toc, vrb, vtc\n\n\t\t  -v --verbose      print the commands called\n\t\t  -s --silent       don't show info messages (keeps tex output and error messages)\n\t\t  -d --dry-run      print the commands but don't run them\n\t\t  --version         show version number\n\t\t  -h --help         show this help\n\n\n**Old scripts:**\n- [scripts/old/newtex](./scripts/old/newtex): bash script to generate a new tex file from template and open texmaker\n- [scripts/old/texcleanup](./scripts/old/texcleanup): bash script to remove tex build files in a build directory\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdlesbre%2Ftex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdlesbre%2Ftex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdlesbre%2Ftex/lists"}