An easily customizable LaTeX template for PhD dissertations and M.S. theses (or GBO/DQE/thesis proposals) that meets Johns Hopkins University Sheridan Libraries formatting requirements. This template provides a structured, modular approach to dissertation writing in LaTeX/Overleaf with compliance to JHU formatting standards as of the Fall 2025 term.
Overleaf requires a ZIP file upload. Here's the easiest way:
-
Download ZIP from GitHub:
- Click the green "Code" button above
- Select "Download ZIP"
- Save
JHU-thesis-LaTeX-main.zip
to your computer
-
Upload to Overleaf:
- Go to Overleaf.com
- Click "New Project" β "Upload Project"
- Select the downloaded
JHU-thesis-LaTeX-main.zip
file - Overleaf will automatically extract and set up your project
-
Start editing:
- The main document is
main.tex
- Edit files in the Overleaf editor
- Compile by clicking the "Recompile" button
- The main document is
Note: Overleaf automatically handles LaTeX compilation, so you don't need to run manual commands.
-
Download the template:
- Click the green "Code" button β "Download ZIP"
- Extract to your desired location
-
Edit core files:
frontmatter/cover.tex
: Title, author, degree, and datefrontmatter/abstract.tex
: Your abstractfrontmatter/readers.tex
: Your readers/committeefrontmatter/acknowledgments.tex
: Your acknowledgmentsfrontmatter/dedication.tex
: Your dedication
-
Add your content:
introduction/introduction.tex
: Introduction chapterchapter*/chapter*.tex
: Main chapters (currently 3 provided)conclusion/conclusion.tex
: Conclusions chapterappendix/appendix*/appendix*.tex
: Appendices (currently 3 provided)backmatter/dissertation.bib
: Bibliography entries
-
Compile:
pdflatex main.tex bibtex main pdflatex main.tex pdflatex main.tex
- Use
pdflatex
for best PDF/A compatibility - Run
bibtex
between LaTeX runs for bibliography updates - Three LaTeX runs typically needed for cross-references and TOC
- Ensure all
.tex
files are UTF-8 encoded
Note: These commands are for compiling LaTeX on your local device. You do NOT need to worry about this if you use Overleaf.
JHU-thesis-LaTeX/
βββ main.tex # Main document orchestrator
βββ preamble.sty # All formatting & package definitions
βββ figures/ # Image files (clock.jpg, beach.jpg, hospital.jpg, etc.)
βββ frontmatter/
β βββ cover.tex # Title page
β βββ abstract.tex # Abstract (β€350 words)
β βββ readers.tex # Thesis/reading committee (optional)
β βββ acknowledgments.tex # Acknowledgments page (optional)
β βββ dedication.tex # Dedication page (optional)
β βββ toc.tex # Table of contents generation
βββ introduction/
β βββ introduction.tex # Introduction chapter
βββ chapter1/, chapter2/, chapter3/
β βββ chapter*.tex # Main content chapters
βββ conclusion/
β βββ conclusion.tex # Conclusions chapter
βββ backmatter/
β βββ references.tex # References chapter
β βββ appendix/
β β βββ appendixA/appendixA.tex
β β βββ appendixB/appendixB.tex
β β βββ appendixC/appendixC.tex
β βββ dissertation.bib # Bibliography database
β βββ cv.pdf # CV (optional)
- Frontmatter Order: Title page β Abstract β Readers β Dedication/Acknowledgments (Preface) β Table of Contents β Lists of Figures/Tables
- Page Numbering: Roman numerals for frontmatter, Arabic for main text, centered at bottom
- Margins: 1 inch on all sides (option for 1.5 inch left margins for physical print copy submission)
- Font: Compatible with both serif and sans serif fonts
- Spacing: Double-spaced main text and abstract
- References Structure: Unified chapter containing appendices and bibliography
- PDF/A Format: Full compliance for dissertation submission
- Modular Design: Each chapter in separate file for easy management
- Bibliography Management: natbib package with flexible citation styles
- Figure/Table Support: Pre-configured formatting for academic figures
- Mathematical Notation: Full LaTeX math support with appropriate spacing
Based on official requirements from https://www.library.jhu.edu/library-services/electronic-theses-dissertations/formatting-requirements/:
- β Content centered within margins
- β Page number hidden
- β Title in ALL CAPITAL LETTERS
- β Required statement: "A dissertation submitted to Johns Hopkins University in conformity with the requirements for the degree of [doctoral degree]"
- β Location: "Baltimore, Maryland"
- β Date in "Month Year" format
- β Optional copyright notice at bottom
- β Margins: 1 inch on all sides
- β Fonts: Sans serif recommended (Arial, Calibri, Helvetica) - template supports both serif and sans serif
- β Font Size: 10pt minimum (template uses 12pt)
- β Spacing: Double-spaced main text and abstract
- β Page Numbers: Centered at bottom of page
- β Format: Must be submitted as PDF/A
- β Title page: Hidden page number
- β Front matter: Roman numerals (ii, iii, iv, etc.)
- β Main content: Arabic numerals (1, 2, 3, etc.)
- β Position: Centered at bottom of page
- β Title Page
- β Abstract (350 words maximum)
- β Preface (includes Dedication and Acknowledgments)
- β Table of Contents
- β List of Tables (if applicable)
- β List of Figures (if applicable)
- β List of Plates (if applicable)
- β Abstract: Maximum 350 words, double-spaced
- β Bibliography: Properly formatted academic citations
- β PDF/A Format: Ensures long-term digital preservation
- β Accessibility: Proper document structure for screen readers
To use sans serif fonts (JHU recommended), modify preamble.sty
:
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
- Create new directory:
chapter4/
- Add
chapter4/chapter4.tex
with content - Include in
main.tex
:\input{chapter4/chapter4}
Edit the bibliography section in references/references.tex
to change citation styles or add multiple bibliographies.
For JHU-specific formatting questions, consult:
For LaTeX technical issues, refer to comprehensive LaTeX documentation or TeX Stack Exchange.
This template was created in August 2025 and reflects current JHU dissertation requirements. Always verify with the latest official guidelines before submission.