Let
X

LaTeX Thesis Template: Format Your Dissertation Fast

By Shihab Shahriar Antor · Updated June 2026 · 8 min read

A LaTeX thesis uses \documentclass{report} or {book}, front matter (title page, abstract, table of contents), numbered chapters via \chapter, and a bibliography. Start from your university’s official class if it has one, or a general thesis template, then fill in chapters as separate files with \include. On LetX you can open a ready thesis template and compile instantly.

The structure of a LaTeX thesis

A thesis is a long, multi-part document, so it uses report or book rather than article. Those classes add \chapter and a front/main/back-matter split. A typical layout:

PartContentsLaTeX
Front matterTitle page, abstract, TOC, lists\frontmatter
Main matterChapters 1…N\mainmatter \chapter
Back matterBibliography, appendices\backmatter \appendix

A thesis skeleton you can copy

thesis.tex
\documentclass[12pt,oneside]{book}
\usepackage{graphicx}
\usepackage[backend=biber,style=numeric]{biblatex}
\addbibresource{references.bib}

\title{Thesis Title}
\author{Your Name}

\begin{document}
\frontmatter
\maketitle
\begin{abstract}
A short summary of the thesis.
\end{abstract}
\tableofcontents
\listoffigures
\listoftables

\mainmatter
\include{chapters/introduction}
\include{chapters/literature}
\include{chapters/method}
\include{chapters/results}
\include{chapters/conclusion}

\backmatter
\printbibliography
\end{document}

Each \include{chapters/...} pulls in a separate .tex file. Keeping chapters in their own files makes a long thesis manageable and lets co-authors work on different chapters at once.

Use your university’s official template

Many universities mandate exact margins, title-page wording, and spacing. LetX ships ready, compile-ready university thesis templates — BUET, BRAC, IIT, MIT, Oxford, Cambridge, Stanford and more — so you don’t fight formatting rules. Browse the full LaTeX template gallery, or the Latex_Templates repo on GitHub.

  • Two compiles for the TOC and cross-references to settle (LetX runs the passes for you).
  • \label/\ref for figures, tables, and chapters — never hard-code numbers.
  • Real-time co-authoring with your supervisor on the same draft.

Open a ready thesis template and compile now — free.

Browse Thesis Templates

Frequently asked questions

What document class should I use for a thesis in LaTeX?

Use report or book for a multi-chapter thesis — both provide \chapter and front/main/back-matter sections. If your university supplies an official .cls file, use that instead so margins and the title page meet the requirements.

How do I split a thesis into chapters?

Put each chapter in its own .tex file and pull them into the main file with \include{chapters/introduction}. This keeps a long document manageable and lets co-authors edit different chapters independently.

Does LetX have university thesis templates?

Yes. LetX includes ready, compile-tested thesis templates for many universities (BUET, BRAC, IIT, MIT, Oxford, Cambridge, Stanford and others). Open one and start writing — no formatting setup.

Why does my table of contents not appear?

The TOC is built from the .aux file, so it needs two compiles: the first records the headings, the second prints the TOC. LetX runs the required passes automatically.

Related

Written by Shihab Shahriar Antor — AI Engineer & Founder of Shahriar Labs. Builder of LetX (collaborative LaTeX) and QuantumSketch (AI STEM video).