{"id":14577841,"url":"https://github.com/Pinzauti/LaTeX-thesis-template","last_synced_at":"2025-09-04T12:32:59.300Z","repository":{"id":39977850,"uuid":"469140072","full_name":"Pinzauti/LaTeX-thesis-template","owner":"Pinzauti","description":"Clean LaTeX template for a thesis or a large writeup.","archived":false,"fork":false,"pushed_at":"2024-06-26T07:10:34.000Z","size":324,"stargazers_count":29,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-27T08:06:29.532Z","etag":null,"topics":["classicthesis","latex","latex-template","thesis-latex-template","thesis-template"],"latest_commit_sha":null,"homepage":"https://github.com/Pinzauti/LaTeX-thesis-template/releases/download/v1.1/template.pdf","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/Pinzauti.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-12T16:38:34.000Z","updated_at":"2024-06-26T07:07:39.000Z","dependencies_parsed_at":"2024-01-10T17:44:52.795Z","dependency_job_id":null,"html_url":"https://github.com/Pinzauti/LaTeX-thesis-template","commit_stats":null,"previous_names":[],"tags_count":4,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pinzauti%2FLaTeX-thesis-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pinzauti%2FLaTeX-thesis-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pinzauti%2FLaTeX-thesis-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pinzauti%2FLaTeX-thesis-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Pinzauti","download_url":"https://codeload.github.com/Pinzauti/LaTeX-thesis-template/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":218022240,"owners_count":16266471,"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":["classicthesis","latex","latex-template","thesis-latex-template","thesis-template"],"created_at":"2024-09-07T17:01:19.379Z","updated_at":"2024-09-07T17:02:22.080Z","avatar_url":"https://github.com/Pinzauti.png","language":"TeX","funding_links":[],"categories":["Popular \u0026 New LaTeX Templates"],"sub_categories":["Thesis/Dissertation"],"readme":"[![.github/workflows/latex.yml](https://github.com/Pinzauti/LaTeX-thesis-template/actions/workflows/latex.yml/badge.svg)](https://github.com/Pinzauti/LaTeX-thesis-template/actions/workflows/latex.yml)\n![MIT](https://img.shields.io/badge/license-MIT-brightgreen) \n[![Latest release](https://badgen.net/github/release/Pinzauti/LaTeX-thesis-template)](https://github.com/Pinzauti/LaTeX-thesis-template/releases/tag/v1.1)\n# LaTeX Thesis Template\nClean LaTeX template for a thesis or a large writeup. You can see [here](https://github.com/Pinzauti/LaTeX-thesis-template/releases/download/v1.2/template.pdf) the generated PDF.\n\n## Requirements\nYou need a working LaTeX enviroment installed in your system.\n#### Minted\nIf you want to add source code to your document and therefore use the [minted package](https://ctan.org/pkg/minted?lang=en), you need to make sure to have [Python](https://www.python.org/) and the [pygments package](https://pygments.org/) installed in your system. You can take a look at the [documentation](http://tug.ctan.org/macros/latex/contrib/minted/minted.pdf) to have a better insight.\n\nNote that this setup is default but not mandatory for the template, if you don't need to write code in your document just remove the minted package from the ```config.tex``` file (and of course the example code in the first chapter).\n\n## Getting started\n\nIn order to compile the template you just need to navigate to the ```src``` folder and execute the command:\n\n```\nlatexmk\n```\n\n### Editors\nIf you use [Overleaf](https://www.overleaf.com/project), [Visual Studio Code](https://code.visualstudio.com/) or any other editor just compile everything as usual.\n\n## File structure\n    .\n    ├── .github                               \n    |   ├── workflows\n    |       ├── latex.yml               # Action to compile and upload the PDF document to the workflow tab  \n    ├── src                             # Where the actual template is               \n    │   ├── Chapters                    # Chapters of the document\n    |       ├── AppendixA               \n    |           ├── Index.tex           # Entrypoint of Appendix A, here you should link your sections\n    |           ├── Section1.tex        # First section of the appendix\n    |           └── ...\n    |       ├── Chapter1\n    |           ├── Index.tex           # Entrypoint of Chapter 1, here you should link your sections\n    |           ├── Section1.tex        # First section of the chapter\n    |           └── ...\n    |       └── ...\n    │   ├── FrontBack                   # Material of the frontpage or the backpage\n    |       ├── Abstract.tex            # Abstract of the document\n    |       ├── Bibliography.tex        # Add the bibliography to the document, customizable\n    |       ├── Conclusions.tex         # Conclusions of the document\n    |       ├── Frontespizio.tex        # Frontpage of the document\n    |       ├── Quote.tex               # An initial quote \n    |       └── Titleback.tex           # Page behind the frontpage\n    |   ├── Images                      # Where images are located\n    |       └── logo.png                # Logo in the frontpage, replace with your logo\n    │   |── Bibliography.bib            # Bibliography entries\n    |   |── config.tex                  # Configuration (e.g. packages, theorems etc.)\n    |   |── main.tex                    # Main file, it is what you have to compile\n    |   └── .latexmkrc                  # Contains the commands to compile the document\n    |── .gitignore\n    |── CITATION.cff\n    |── LICENSE\n    └── README.md\n \n## Configuration file\nIt is the file [config.tex](https://github.com/Pinzauti/LaTeX-thesis-template/blob/main/src/config.tex). It contains some pre-included packages and defines the ```\\abs``` command for the absolute value. It also defines the ambients ```Postulate```, ```Definition``` and ```Theorem```. More info [here](http://www.ams.org/arc/tex/amscls/amsthdoc.pdf).\n\n### Included packages\n\n- [classicthesis](https://ctan.org/pkg/classicthesis): main package used for the thesis style.\n- [frontespizio](https://ctan.org/pkg/frontespizio): generates the first page of the document.\n- [biblatex](https://ctan.org/pkg/biblatex): bibliography.\n- [graphicx](https://ctan.org/pkg/graphicx): handles images.\n- [fontenc](https://ctan.org/pkg/fontenc): handles fonts.\n- [mathtools](https://ctan.org/pkg/mathtools): provides many useful tools for mathematical typesetting.\n- [amssymb](https://ctan.org/pkg/amsfonts): provides some mathematical symbols.\n- [amsthm](https://ctan.org/pkg/amsthm): handles theorems setup.\n- [minted](https://ctan.org/pkg/minted): to add source code in a nice way.\n- [epigraph](https://ctan.org/pkg/epigraph): to add quotes.\n\n## Included Github action\n\nUsed in order to compile the document and to upload it to the [workflow tab](https://github.com/Pinzauti/LaTeX-thesis-template/actions/workflows/latex.yml). More info [here](https://github.com/xu-cheng/latex-action/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPinzauti%2FLaTeX-thesis-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FPinzauti%2FLaTeX-thesis-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPinzauti%2FLaTeX-thesis-template/lists"}