{"id":15899480,"url":"https://github.com/jjerphan/latex-thesis-template","last_synced_at":"2026-05-05T07:32:15.808Z","repository":{"id":113433414,"uuid":"183871523","full_name":"jjerphan/latex-thesis-template","owner":"jjerphan","description":"A template and setup to write and share LaTeX documents","archived":false,"fork":false,"pushed_at":"2021-01-27T11:04:13.000Z","size":22,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-02T19:22:21.121Z","etag":null,"topics":["ci","gitlab","gitlab-ci","latex","report","thesis"],"latest_commit_sha":null,"homepage":"","language":"TeX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jjerphan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2019-04-28T07:18:55.000Z","updated_at":"2022-10-08T14:48:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"77f23158-fc35-4253-a1e2-872cddbd7374","html_url":"https://github.com/jjerphan/latex-thesis-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jjerphan/latex-thesis-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jjerphan%2Flatex-thesis-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jjerphan%2Flatex-thesis-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jjerphan%2Flatex-thesis-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jjerphan%2Flatex-thesis-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jjerphan","download_url":"https://codeload.github.com/jjerphan/latex-thesis-template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jjerphan%2Flatex-thesis-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32640533,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"online","status_checked_at":"2026-05-05T02:00:06.033Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ci","gitlab","gitlab-ci","latex","report","thesis"],"created_at":"2024-10-06T10:21:26.816Z","updated_at":"2026-05-05T07:32:15.788Z","avatar_url":"https://github.com/jjerphan.png","language":"TeX","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LaTeX Report Template\n\n![Badge](https://gitlab.utc.fr/LaTeX-UTC/Templates/latex-thesis-template/badges/master/build.svg)\n\n\n[![Creative Commons License - CC-BY\n4.0](https://i.creativecommons.org/l/by/4.0/88x31.png)](http://creativecommons.org/licenses/by/4.0/)\n\nThis is a simple LaTeX template for report and thesis.\n\n\u003e See the document\n[here](https://gitlab.utc.fr/LaTeX-UTC/Templates/latex-thesis-template/builds/artifacts/master/raw/main.pdf?job=building-latex)\n\nMost of the template is an adaptation of [Lilian Besson internship\nreport](https://bitbucket.org/lbesson/internship-mva-2016/src/c35130e0f40e9787f8fd4dd333990642cd8875d7/README.md?at=master\u0026fileviewer=file-view-default).\n\n## Usage\n\n`make` can be used to do most of the workflow of compiling and cleaning the\nrepo.\n\n`compile_on_change.sh` can be used to recompile when changes happen.\n\n## Structure\n\nThe repo is organised as follows:\n - `Makefile`: used by `make` to compile the document and clean the repo when ;\n - `biblio.bib`: the bibliography\n - `main.tex`: the entrypoint for the compilation. Defines the structure of the\n     document\n - `glossary.tex`: the glossary ; included at the end.\n - `preamble.tex` and `settings.text`: the fixtures that define the appearance\n     of the document\n - `chapters/`: the content of the document.  Several doc are present and are\n     include\n - `compile_on_change.sh`: a script that compiles the document on change\n - `figs/`: where to put rasters, vector images and plantuml script to be\n     included at compile time ;\n - `scripts/`: a set of custom script to use for the compilation\n\n\n## How to include raster in the document LaTeX?\n\nMain take away: **All the figures have to be present in the `figs/` folder\n`figs/` for any type of extensions.**\n\nThe supported extensions are:\n - `.pdf`\n - `.png`\n - `.svg`\n - `.pu` (PlantUML)\n\n### How to include `pdf`'s and `png`'s?\n\n 1. Put the figure in `figs/`, for instance: `figs/rabbit.pdf`\n 1. Use it in the document directely without any path nor extension:\n\n    ```latex\n    \\includegraphics[width=.5\\textwidth]{rabbit}\n    ```\n\n### How to include `.pu`'s?\n\n 1. Put the figure in `figs/`, for instance: `figs/cactus.pu`\n 1. Add it to the list of figures to generate as `pdf` in  `Makefile`:\n\n    ```MakeFile\n    GENERATED_PDF_FROM_UML= \\\n    ...\n          generated/figs/uml/cactus.pdf \\\n    ...\n    ```\n 1. Use it in the document directely without any path nor extension:\n\n    ```latex\n    \\includegraphics[width=.5\\textwidth]{citron}\n    ```\n\n## Gitlab Continuous Integration\n\n`.gitlab-ci.yml` defines a simple CI pipeline : it compiles the document and\nmakes the artefact available online.\n\nThis way, you can easily share the link so that people can have access to the\nlast state of your document on the `master` branch instead of asking it\neverytime.\n\nIf you use GitLab, you can fork this repo and activate the sharred runner to\nhave this setup.\n\n## License\n\nThis entire project is publicly released under [the Creative Commons\n— Attribution 4.0\nInternationalLicense](http://creativecommons.org/licenses/by/4.0/) (CC BY 4.0).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjjerphan%2Flatex-thesis-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjjerphan%2Flatex-thesis-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjjerphan%2Flatex-thesis-template/lists"}