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 Spring 2026 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.zipto your computer
-
Upload to Overleaf:
- Go to Overleaf.com
- Click "New Project" β "Upload Project"
- Select the downloaded
JHU-thesis-LaTeX-main.zipfile - 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:
output.xmpdata: Your title, name, subject, and keywords for PDF/A metadatafrontmatter/cover.tex: Title, author, degree, and datefrontmatter/abstract.tex: Your abstractfrontmatter/readers.tex: Your readers/committeefrontmatter/acknowledgments.tex: Your acknowledgmentsfrontmatter/quote.tex: Optional epigraph/quotation page
-
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
pdflatexfor best PDF/A compatibility - Run
bibtexbetween LaTeX runs for bibliography updates - Three LaTeX runs typically needed for cross-references and TOC
- Ensure all
.texfiles 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 # Document body and chapter ordering
βββ preamble.sty # All packages, PDF/A compliance, and formatting
βββ output.xmpdata # β οΈ PDF/A metadata β UPDATE WITH YOUR INFO
βββ .gitignore # Excludes build artifacts from version control
βββ sRGB_IEC61966-2-1_black_scaled.icc # ICC color profile for PDF/A-1b
βββ latexmkrc.txt # latexmk configuration (optional)
βββ figures/ # Introduction figures
β βββ badwater-basin.JPG
βββ frontmatter/
β βββ cover.tex # Title page
β βββ abstract.tex # Abstract (β€350 words)
β βββ readers.tex # Thesis/reading committee (optional)
β βββ acknowledgments.tex # Acknowledgments page (optional)
β βββ quote.tex # Epigraph/quotation page (optional)
β βββ toc.tex # Table of contents generation
βββ introduction/
β βββ introduction.tex # Introduction chapter
βββ chapter1/
β βββ chapter1.tex # Chapter 1 content
β βββ figures/ # Chapter 1 figures
βββ chapter2/
β βββ chapter2.tex # Chapter 2 content
β βββ figures/ # Chapter 2 figures
βββ chapter3/
β βββ chapter3.tex # Chapter 3 content
β βββ figures/ # Chapter 3 figures
βββ conclusion/
β βββ conclusion.tex # Conclusions chapter
βββ appendix/
β βββ appendixA/
β β βββ appendixA.tex # Appendix A content
β β βββ figures/ # Appendix A figures
β βββ appendixB/
β β βββ appendixB.tex # Appendix B content
β β βββ figures/ # Appendix B figures
β βββ appendixC/
β βββ appendixC.tex # Appendix C content
β βββ figures/ # Appendix C figures
βββ backmatter/
βββ references.tex # References chapter
βββ dissertation.bib # Bibliography database
- Frontmatter Order: Title page β Abstract β Readers β 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-1b Format: Full compliance for dissertation submission with embedded ICC color profile
- Modular Design: Each chapter in separate directory with its own
figures/folder for easy management - Bibliography Management: natbib package with flexible citation styles
- Figure/Table Support: Pre-configured formatting with automatic numbering (Figure X.Y / Table X.Y)
- Mathematical Notation: Full LaTeX math support with appropriate spacing
- Graphics Path Resolution: Automatic figure lookup across all chapter directories via
\graphicspath
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 Acknowledgments)
- β Table of Contents
- β List of Tables (if applicable)
- β List of Figures (if applicable)
- β Abstract: Maximum 350 words, double-spaced
- β Bibliography: Properly formatted academic citations
- β PDF/A-1b 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/ - Create
chapter4/figures/for chapter-specific images - Add
chapter4/chapter4.texwith content - Add the graphics path in
preamble.sty:{chapter4/figures/}% - Include in
main.tex:\input{chapter4/chapter4}
Place figures in the appropriate figures/ directory:
- Introduction figures β
figures/ - Chapter figures β
chapter*/figures/ - Appendix figures β
appendix/appendix*/figures/
Use descriptive, hyphenated filenames (e.g., badwater-basin.JPG, alabama-hills.JPG).
- Color space: sRGB IEC61966-2.1 (not Display P3, Adobe RGB, or ProPhoto RGB)
- Embedded ICC profile: sRGB profile must be embedded in the image file
- Format: JPG or PNG (JPG recommended for photographs)
To convert images without altering scientific print quality, you can use Claude (ask it to batch-convert your figures from Display P3 to sRGB using Python/Pillow with perceptual rendering intent), or use ImageMagick from the command line:
magick input.jpg -profile sRGB.icc -quality 95 output.jpgThe sample figures included in this template have already been converted to sRGB at 300 DPI print resolution.
Edit the bibliography section in preamble.sty to change citation styles, or modify backmatter/references.tex to add multiple bibliographies.
Before compiling your final submission, you must update output.xmpdata with your personal information. This file controls the XMP metadata embedded in the PDF/A-1b output. Replace the placeholder values:
\Title{Your Actual Dissertation Title}
\Author{Your Full Name}
\Subject{Your Degree/Subject Topic}
\Keywords{keyword1 \sep keyword2 \sep keyword3}
\Copyright{Copyright \copyright\ 2026 by Your Full Name}The \Publisher and \Org fields are pre-set to Johns Hopkins University and should not need changes. If this file is not updated, your PDF metadata will contain placeholder text, which may cause issues during the Sheridan Libraries submission review.
For JHU-specific formatting questions, consult:
For LaTeX technical issues, refer to comprehensive LaTeX documentation or TeX Stack Exchange.
This template was created in March 2026 and reflects current JHU dissertation requirements. Always verify with the latest official guidelines before submission.