A Quarto extension template for formatting PhD theses according to MANIT (Maulana Azad National Institute of Technology) guidelines.
đź“„ View Sample PDF - See what your thesis will look like with this template
- MANIT-compliant formatting
- Automated front matter (abstract, acknowledgements, declaration, etc.)
- Bibliography management with BibLaTeX
- Support for multiple output formats (PDF, HTML, DOCX)
- Chapter-based organization
- Automated table of contents, list of figures, and list of tables
- Symbol and abbreviation lists
- Publication list support
Before using this template, ensure you have the following installed:
- Quarto (>= 1.3): Download from https://quarto.org/docs/get-started/
- LaTeX Distribution:
- Windows: MiKTeX or TeX Live
- Mac: MacTeX
- Linux: TeX Live
- R or Python (optional, if using code chunks)
git clone https://github.com/ResearchInfuser/manit-thesis.git
cd manit-thesisDownload the repository as a ZIP file and extract it to your desired location.
manit-thesis/
_quarto.yml # Main configuration file
index.qmd # Entry point (includes Chapter 1)
references.bib # Your bibliography file
publications.bib # Your publication list
Chapters/ # Chapter files
01_Chapter1.qmd # Introduction
02_Chapter2.qmd # Literature Review
03_Chapter.qmd # Methodology
04_Chapter.qmd # Results
05_Chapter.qmd # Discussion
06_Chapter.qmd # Conclusions
07_Chapter.qmd # Additional Contributions
08_list_of_publications.qmd
09_references.qmd
Frontmatter/ # Front matter files
abstract.tex
acknowledgements.tex
dedication.tex
declaration.tex
abbreviations.tex
symbols.tex
Figures/ # Place your figures here
images/ # Template images
Appendices/ # Appendix files (optional)
_extensions/ # Quarto extensions (DO NOT MODIFY)
draft/ # Output directory (generated)
Edit _quarto.yml to add your personal information:
book:
title: "[Your Thesis Title]"
author:
name: "[Your Name]"
thesis:
scholar-number: '[Your Scholar Number]'
department: "[Your Department]"
institute: "[Your Institute]"
phd-start-date: "[Month Year]"
phd-end-date: "[Month Year]"
keywords: "[Keywords]"
supervisor:
name: "[Supervisor Name]"
designation: "[Designation]"Update files in the Frontmatter/ directory:
abstract.tex- Your thesis abstractacknowledgements.tex- Acknowledgementsdedication.tex- Dedication (optional)declaration.tex- Declaration statementabbreviations.tex- List of abbreviationssymbols.tex- List of symbols
Edit the chapter files in Chapters/:
- Start with
01_Chapter1.qmdfor your introduction - Continue with subsequent chapters
- Each file uses Quarto markdown syntax
Add your references to references.bib in BibTeX format:
@article{author2023title,
title={Title of the Article},
author={Author, First and Author, Second},
journal={Journal Name},
year={2023}
}quarto renderOr specifically for PDF:
quarto render --to manit-thesis-pdfquarto render --to htmlquarto render --to docxUse Quarto's preview mode for live updates:
quarto previewPlace figures in the Figures/ directory and reference them in your chapters:
{#fig-label}
As shown in @fig-label, we can see...Create tables using markdown or Quarto syntax:
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
: Caption for your table {#tbl-label}- Sections:
@sec-label - Figures:
@fig-label - Tables:
@tbl-label - Equations:
@eq-label
Cite references using @citekey:
According to @author2023title, the method works well.
Multiple citations [@author2023title; @another2022paper].Uncomment the appendices section in _quarto.yml:
appendices:
- Appendices/AppendixA.qmdInclude code in your thesis:
```{python}
#| echo: true
#| label: fig-plot
#| fig-cap: "Sample plot"
import matplotlib.pyplot as plt
plt.plot([1, 2, 3], [1, 4, 9])
plt.show()
```Use LaTeX math syntax:
Inline equation: $E = mc^2$
Display equation:
$$
\frac{\partial f}{\partial x} = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h}
$$ {#eq-derivative}-
PDF generation fails
- Ensure LaTeX is properly installed
- Check that all required packages are installed
- Run
quarto checkto verify installation
-
Bibliography not showing
- Verify
references.bibsyntax - Ensure citations are used in the text
- Check BibLaTeX backend is installed
- Verify
-
Figures not appearing
- Check file paths are correct
- Ensure images exist in the specified location
- Verify image formats are supported (PNG, PDF, JPG)
-
Cross-references not working
- Ensure labels are unique
- Check label syntax matches Quarto conventions
- Rebuild the entire project
- Quarto Documentation: https://quarto.org/docs/
- MANIT Guidelines: Check with your department
- Issues: Open an issue on GitHub
Contributions are welcome! Please feel free to submit a Pull Request.
This template is released under the MIT License. See LICENSE for details.
This template is designed for PhD students at MANIT, Bhopal. It follows the official thesis formatting guidelines.
If you use this template, please cite it as:
@software{manit_thesis_template,
title={MANIT PhD Thesis Quarto Template},
author={Prashant Kumar Nag},
organization={ResearchInfuser},
year={2024},
url={https://github.com/ResearchInfuser/manit-thesis}
}Or in text: "MANIT PhD Thesis Quarto Template by Prashant Kumar Nag (ResearchInfuser, 2024)"
For questions or support, please:
- Open an issue on GitHub
- Contact the template maintainer
- Refer to Quarto documentation
**Good luck with your thesis! **
