Skip to content

dylan-moinse/phd-thesis-latex-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

5 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

PhD Thesis LaTeX Template πŸŽ“

LaTeX Overleaf LuaLaTeX English French License: MIT Maintained Email

A comprehensive and modern designed LaTeX template specifically tailored for PhD theses.


Table of Contents πŸ”­


Quick Start πŸš€

This template is designed to be used either directly on Overleaf or locally via Git.

Option 1: Use on Overleaf πŸ’»

The easiest way to get started is to use this template on Overleaf, with no local installation required.

  1. Go to Overleaf: https://www.overleaf.com/

  2. Create a new project

    • Click New Project
    • Select Import from GitHub
  3. Paste the repository URL:

    https://github.com/dylan-moinse/phd-thesis-latex-template
    
  4. Set the compiler to LuaLaTeX

  5. Compile main.tex

Option 2: Clone and Compile Locally πŸ”¨

If you prefer working locally (offline compilation):

  1. Clone the repository:

    git clone https://github.com/dylan-moinse/phd-thesis-latex-template.git
    cd phd-thesis-template
  2. Install LaTeX distribution

    • Windows: Install MiKTeX or TeX Live
    • macOS: Install MacTeX
    • Linux (Debian/Ubuntu):
      sudo apt-get install texlive-full
      
  3. Compile the document

    • Using LuaLaTeX (recommended):
      lualatex main.tex
      biber main
      lualatex main.tex
      lualatex main.tex
    • Using latexmk (automated):
      latexmk -pdf main.tex

Template Structure πŸ—ΊοΈ

phd-thesis-latex-template/         # Root directory of the thesis template
β”‚
β”œβ”€β”€ main.tex                       ## Main document file
β”œβ”€β”€ latexmkrc                      ## Compilation configuration
β”œβ”€β”€ LICENSE                        ## MIT license
β”œβ”€β”€ README.md                      ## GitHub README
β”‚
β”œβ”€β”€ asset/                         ## Document class and style definitions
β”‚   β”œβ”€β”€ thesis.cls                 ### Main document class
β”‚   β”œβ”€β”€ bib/                       ### Bibliography database
β”‚   β”‚   └── references.bib         #### References
β”‚   └── style/                     ### Modular style files
β”‚       β”œβ”€β”€ bib.sty                #### Bibliography configuration
β”‚       β”œβ”€β”€ color.sty              #### Color scheme
β”‚       β”œβ”€β”€ fig.sty                #### Figures, maps, tables, and equations
β”‚       β”œβ”€β”€ font.sty               #### Font configuration
β”‚       β”œβ”€β”€ header.sty             #### Headers and footers
β”‚       β”œβ”€β”€ section.sty            #### Part/chapter formatting and backgrounds
β”‚       └── fonts/                 #### Custom font files
β”‚
β”œβ”€β”€ content/                       ## Thesis content
β”‚   β”œβ”€β”€ front-matter/              ### Preliminary pages
β”‚   β”‚   β”œβ”€β”€ 01-frontpage.tex       #### Title page
β”‚   β”‚   β”œβ”€β”€ 02-acknowledgments.tex #### Acknowledgments section
β”‚   β”‚   β”œβ”€β”€ 03-cite.tex            #### Cite the document
β”‚   β”‚   └── 04-foreword.tex        #### Preface
β”‚   β”‚
β”‚   β”œβ”€β”€ main-matter/               ### Core thesis chapters
β”‚   β”‚   β”œβ”€β”€ introduction.tex       #### General introduction
β”‚   β”‚   β”œβ”€β”€ part1/                 #### First thesis part
β”‚   β”‚   β”‚   β”œβ”€β”€ introduction.tex   ##### Part introduction
β”‚   β”‚   β”‚   └── conclusion.tex     ##### Part conclusion
β”‚   β”‚   β”œβ”€β”€ chap1/                 #### Chapter 1 content
β”‚   β”‚   β”‚   β”œβ”€β”€ introduction.tex   ##### Chapter introduction
β”‚   β”‚   β”‚   β”œβ”€β”€ content.tex        ##### Chapter body (structure)
β”‚   β”‚   β”‚   β”œβ”€β”€ section1.tex       ##### Chapter section 1
β”‚   β”‚   β”‚   β”œβ”€β”€ section2.tex       ##### Chapter section 2
β”‚   β”‚   β”‚   β”œβ”€β”€ section3.tex       ##### Chapter section 3
β”‚   β”‚   β”‚   └── conclusion.tex     ##### Chapter conclusion
β”‚   β”‚   β”œβ”€β”€ chap2/                 #### Chapter 2 content
β”‚   β”‚   β”‚   β”œβ”€β”€ introduction.tex   ##### Chapter introduction
β”‚   β”‚   β”‚   β”œβ”€β”€ content.tex        ##### Chapter body (structure)
β”‚   β”‚   β”‚   β”œβ”€β”€ section1.tex       ##### Chapter section 1
β”‚   β”‚   β”‚   β”œβ”€β”€ section2.tex       ##### Chapter section 2
β”‚   β”‚   β”‚   β”œβ”€β”€ section3.tex       ##### Chapter section 3
β”‚   β”‚   β”‚   └── conclusion.tex     ##### Chapter conclusion
β”‚   β”‚   └── conclusion.tex         #### General conclusion
β”‚   β”‚
β”‚   └── back-matter/               ### Final thesis sections
β”‚       β”œβ”€β”€ 95-bibliography.tex    #### Bibliography printing
β”‚       β”œβ”€β”€ 96-index.tex           #### Index generation
β”‚       β”œβ”€β”€ 97-acronyms.tex        #### Acronyms list
β”‚       β”œβ”€β”€ 98-glossary.tex        #### Glossary entries
β”‚       β”œβ”€β”€ 99-abstract.tex        #### Thesis abstract
β”‚       └── appendices/            #### Appendices
β”‚           β”œβ”€β”€ 00-first-page.tex  ##### Appendix title page
β”‚           β”œβ”€β”€ 01-appendix-a.tex  ##### Appendix A
β”‚           β”œβ”€β”€ 01-appendix-b.tex  ##### Appendix B
β”‚           β”œβ”€β”€ 01-appendix-c.tex  ##### Appendix C
β”‚           β”œβ”€β”€ 01-appendix-d.tex  ##### Appendix D
β”‚           β”œβ”€β”€ 01-appendix-e.tex  ##### Appendix E
β”‚           β”œβ”€β”€ 01-appendix-f.tex  ##### Appendix F
β”‚           └── 02-appendix-g.tex  ##### Appendix G
β”‚
β”œβ”€β”€ elements/                      ## Figures, maps, tables, equations, and graphical abstracts
β”‚   β”œβ”€β”€ figures/                   ### Figure folder
β”‚   β”‚   β”œβ”€β”€ fig01.tex              #### Figure example
β”‚   β”‚   β”œβ”€β”€ fig02.tex              #### Figure example
β”‚   β”‚   β”œβ”€β”€ fig03.tex              #### Figure example
β”‚   β”‚   β”œβ”€β”€ fig04.tex              #### Figure example
β”‚   β”‚   └── pic/                   #### Image files
β”‚   β”œβ”€β”€ maps/                      ### Map folder
β”‚   β”‚   β”œβ”€β”€ map01.tex              #### Map example
β”‚   β”‚   └── pic/                   #### Image files
β”‚   β”œβ”€β”€ tables/                    ### Table folder
β”‚   β”‚   └── table01.tex            #### Table example
β”‚   β”œβ”€β”€ equations/                 ### Equation folder
β”‚   β”‚   └── equation01.tex         #### Equation example
β”‚   β”œβ”€β”€ graphical-abstract/        ### Graphical abstract files
β”‚   └── appendices/                ### Appendix-specific elements
β”‚       β”œβ”€β”€ figures/               #### Appendix figures
β”‚       └── maps/                  #### Appendix maps
β”‚
└── extra/                         ## Additional resources
    β”‚   github/                    ### Screenshots for README
    └── logo/                      ### Institutional and partner logo example

Screenshots βœ‚οΈ

A selection of examples showcasing the structure and style of this extensive template:

Image 1
Cover Page
Image 2
Acknowledgments Page
Image 3
General Table of Contents
Image 1
List of Figures
Image 2
List of Maps Page
Image 3
List of Tables
Image 1
List of Equations
Image 2
How to Cite this Document
Image 3
Preface
Image 1
Content of the General Introduction
Image 2
Title of Part I
Image 3
Title of Chapter 1
Image 1
Chapter Table of Contents
Image 2
Chapter Graphical Abstract
Image 3
Chapter Abstract
Image 1
Chapter Content
Image 2
Section Content
Image 3
Table Example
Image 1
Chapter Subbibliography
Image 2
Author Index
Image 3
List of Acronyms
Image 1
Glossary
Image 2
Appendices
Image 3
Appendices Table of Contents

Reference Thesis 🎯

This LaTeX template has been developed, applied, and continuously improved during the preparation of my doctoral thesis, written in French and translated into English.

The complete PhD thesis is publicly available (see the HAL archive and the GitHub repository).


Contact πŸ“§

For any questions or contributions, feel free to contact me via GitHub Issues or email.


Contributors 🀝

Dylan Moinse
Dylan Moinse

Author
Alain L'Hostis
Alain L'Hostis

Thesis Supervisor
Jorge Mariano
Technical Support
IΓ±igo Aguas Ardaiz
IΓ±igo Aguas Ardaiz

Technical Support

About

Production-ready LaTeX template for PhD theses with modular structure.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors