A PhD dissertation is the largest single document most academics ever produce. Unlike journal articles, dissertations have strict university-specific formatting requirements governing margins, fonts, front matter ordering, chapter titles, page numbering, binding margins, and sometimes even the size of header space. Getting any of these details wrong can delay graduation approval by weeks or require a full reformatting pass right before the defense.
LaTeX is the right tool for this job: it handles long documents with chapters, cross-references, multi-level tables of contents, appendices, and bibliographies far better than Word. But university LaTeX templates vary widely, and most graduate students are not given enough guidance on which template to use or how to customize it for their specific university's requirements.
Start with your university's official formatting guide
Every university that awards PhDs publishes a dissertation formatting guide, usually as a PDF on the graduate school or thesis office website. Read it before you begin any LaTeX template work. The guide will specify margin widths, font family and size, line spacing, page size, binding offset, pagination rules, and the exact order of front matter pages.
Print or save the guide to a tab you can reference while building your LaTeX document. Do not rely on memory or on a template file a former student gave you unless you can confirm the template matches the current university guide. Policies change, and using an outdated template is a common cause of format rejections at submission time.
University LaTeX templates: finding the right one
Many universities publish or endorse a LaTeX template, but many do not. When an official template exists, use it as your starting point. When no official template exists, ask your graduate program coordinator whether a university-specific class file is maintained by the thesis office or the library.
If no university template exists, start from a standard book or thesis class — memoir, scrbook, or a basic book class — and customize the geometry, header, footer, and page numbering to match the guide. This is more work upfront but gives you full control and avoids surprises later.
Front matter and its required order
The front matter of a dissertation typically includes, in this order: title page, copyright page (optional), signature page, abstract, acknowledgments, table of contents, list of tables, list of figures, and sometimes a list of abbreviations or nomenclature. The university guide will specify the exact order, the page numbering scheme (often Roman numerals for front matter, Arabic numerals starting at page 1 for the first chapter), and whether each section has a required heading style.
In LaTeX, managing front matter with Roman numerals and chapter-level Arabic pagination requires setting \\pagenumbering correctly at the right points in the document. Using \\frontmatter, \\mainmatter, and \\backmatter from the book class automates much of this, but confirm that the pagination style matches your guide exactly.
Chapter structure, headings, and numbering
A dissertation chapter is typically numbered: Chapter 1, Chapter 2, and so on, with each chapter starting on a right-side (odd) page. Chapter titles may need to appear both in the chapter opening and in the table of contents. Subheadings within chapters — often labeled 1.1, 1.1.1, or similar — must use the numbering depth specified in the guide.
In LaTeX, \\chapter{Chapter Title} produces the chapter heading and adds it to the table of contents automatically. Use \\section, \\subsection, and \\subsubsection for internal heading hierarchy. Verify that the table of contents completes cleanly after each \\chapter{} command and that page numbers resolve correctly.
Tables, figures, and cross-references in a dissertation
Dissertations often include tables and figures, each with a caption and number. Some universities require table and figure titles to appear in separate lists before the main body — a list of tables and a list of figures. LaTeX generates these automatically when you include \\listoffigures and \\listoftables in the front matter.
Cross-references using \\ref and \\label are critical in a long document. Label every figure, table, equation, and chapter in a consistent naming scheme: fig:experiment-setup, tab:results-comparison, eq:model-derivation, chap:background. Inconsistent naming becomes difficult to debug across a 200-page document.
Bibliography and citation style for dissertations
Dissertation bibliography requirements differ from journal articles. Many universities require a uniform citation style across the entire document and often specify a particular citation format (author-year, numbered, or a modified version of a standard style). The bibliography may be split into a general references section and chapter-level bibliographies for published-paper-style dissertations.
Confirm whether your university requires a single \\bibliography{} at the end of the document or chapter-specific bibliographies using \\begin{refsection} with biblatex. Both approaches are supported in LaTeX but require different setup. Review the formatting guide's bibliography section carefully before finalizing the citation style.
Margins, binding offset, and pagination
The university guide will specify top, bottom, left, and right margins, usually with a larger binding margin on the left for right-hand binding or the right for left-hand binding. In LaTeX, the geometry package sets these precisely. Example: \\usepackage[a4paper, left=1.5in, right=1in, top=1in, bindingoffset=0.5in]{geometry} for a document with 1.5-inch binding margin and 1-inch outer margin.
Page numbering rules are often the detail that catches students off guard. Verify whether the title page is numbered, whether the abstract starts on page i or page iii, and whether appendices continue the main Arabic numbering or restart. LaTeX supports all of these patterns, but only if the \\pagenumbering command is placed at the correct point in the document.
When university formatting becomes overwhelming
A dissertation formatting project at many universities takes between 15 and 40 hours if you include the time to read the guide, find or build a template, fix all cross-reference warnings, and verify every figure and table. Many PhD candidates submit their dissertation one to two weeks before the defense, which leaves very little margin for error.
Professional dissertation formatting is a focused investment. Dynsell customizes the LaTeX template to your university's exact guide, generates the front matter and table of contents, applies chapter-level pagination, verifies all cross-references, and delivers a compiled PDF plus source files ready for upload to your university's submission portal.
Submit your university's formatting guide through our manuscript submission form for a custom quote.