University of Rhode Island

  • Future Students
  • Parents and Families

College of Engineering

  • Research and Facilities
  • Departments

Guide to Writing Your Thesis in LaTeX

The bibliography and list of references.

The Graduate School requires a Bibliography which includes all the literature cited for the complete thesis or dissertation. Quoting from the Graduate School’s Guidelines for the Format of Theses and Dissertations :

“Every thesis in Standard Format must contain a Bibliography which lists all the sources used or consulted in writing the entire thesis and is placed at the very end of the work. The complete citations are arranged alphabetically by last name of the author. Individual citations are not numbered. No abbreviations in titles of published works will be accepted. The full title of a book, journal, website, proceedings, or any other published work must be italicized or underlined. Citations must follow standards set by the style manual that the student is using. The bibliography for URI theses is not broken into categories.”

The List of References is not required by the Graduate School, but is the style commonly used in Engineering, Mathematics, and many of the Sciences. It consists of a numbered list of the sources used or consulted in writing the thesis in the order that they are referenced in the text. There can be either one List of References for the entire thesis, or a List of References at the end of each chapter.

Both the Bibliography and the List of References will be generated by the urithesis LaTeX class. All you need to do is add information about your sources to the references.bib file, which is a database containing all of the necessary information about the references, then cite the reference in your thesis using the \cite{} command.

Generating the Bibliography and References

The bibliography and list of references are generated by running BibTeX. To generate the bibliography, load the file thesisbib.tex into your editor, then run BibTeX on it.

If each chapter has its own list of references, you will need to run BibTeX on each chapter to update its list of references. If there is one list of references for the whole thesis (because you used the oneref option, you will only need to run BibTeX on the top level file thesis.tex .

How to Add a Bibliography Entry

When we want to refer to a source in the thesis, we place an entry for that source in the file references.bib , then cite the source in the thesis with the \cite{LABEL} command. The syntax for an entry in the references.bib file is of the form:

ENTRYTYPE is the type of bibliographic entry such as Book , Article , or TechReport , that this entry describes. At the end of this page is a list of all possible entry types .

LABEL is a unique string that is used to refer to this entry in the body of the thesis when using the \cite{LABEL} command.

The FIELDNAMEn entries are the fields that describe this entry, (ie. author, title, pages, year, etc.). Each entry type has certain required fields and optional fields. See the list of all entry types for a description of the available fields.

As an example, suppose we have a paper from a conference proceedings that we want to cite. First we make an entry in the our references.bib file of the form:

We then cite this source in the text of our thesis with the command \cite{re:toolan:as03} . This will generate a Bibliography entry that looks something like:

and a List of References entry that looks something like:

Types of List of References

The Graduate School requires that the bibliography is always at the end of the thesis and sorted alphabetically by author, therefore there is no options that affect it. The list of references is optional, therefore there are a few different ways that it can created.

By default a separate list of references appears at the end of each chapter, and are sorted by the order that they are cited in that chapter. The option oneref (see options ) will create a single list of references for the whole thesis, which due to the requirements of the Graduate School, will appear after the last chapter and before any appendices.

The option aparefs will cite references using the APA style, which is the last name of the author and year of publication, such as (Toolan, 2006), instead of the default IEEE style, which is a number, such as [1]. This option will also sort the references alphabetically by author, instead of in order of citation. The options oneref and aparefs can be used together to create a single list of references using the APA style.

Supported Bibliography Entry Types

The following is a list of all the entry types that can be used. Click on the desired type to see a detailed description of how to use that type.

  • Article – An article from a journal or magazine
  • Book – A book with an explicit publisher
  • InBook – A part of a book, such as a chapter or selected page(s)
  • InCollection – A part of a book having its own title
  • Booklet – Printed and bound works that are not formally published
  • Manual – Technical documentation
  • InProceedings – An article in a conference proceedings
  • Proceedings – The entire proceedings of a conference
  • MastersThesis – A Master’s thesis
  • PhDThesis – A Ph.D. dissertation
  • TechReport – A report published by a school or other institution
  • Unpublished – A document that has not been formally published
  • Electronic – An internet reference like a web page
  • Patent – A patent or patent application
  • Periodical – A magazine or journal
  • Standard – Formally published standard
  • Misc – For use when nothing else fits

Articles that have not yet been published can be handled as a misc type with a note. Sometimes it is desirable to put extra information into the month field such as the day, or additional months. This is accomplished by using the BIBTEX concatenation operator “#“:

Example .bib using this type:

Books may have authors, editors or both. Example .bib using this type:

Inbook is used to reference a part of a book, such as a chapter or selected page(s). The type field can be used to override the word chapter (for which IEEE uses the abbreviation “ch.”) when the book uses parts, sections, etc., instead of chapters

Incollection is used to reference part of a book having its own title. Like book , incollection supports the series, chapter and pages fields. Also, the type field can be used to override the word chapter.

Booklet is used for printed and bound works that are not formally published. A primary difference between booklet and unpublished is that the former is/was distributed by some means. Booklet is rarely used in bibliographies.

Technical documentation is handled by the manual entry type.

References of papers in conference proceedings are handled by the inproceedings or conference entry type. These two types are functionally identical and can be used interchangeably. Example .bib using this type:

It is rare to need to reference an entire conference proceedings, but, if necessary, the proceedings entry type can be used to do so.

Master’s (or minor) theses can be handled with the mastersthesis entry type. The optional type field can be used to override the words “Master’s thesis” if a different designation is desired:

The phdthesis entry type is used for Ph.D. dissertations (major theses). Like mastersthesis , the type field can be used to override the default designation. Example .bib using this type:

Techreport is used for technical reports. The optional type field can be used to override the default designation “Tech. Rep.” Example .bib using this type:

The unpublished entry type is used for documents that have not been formally published. IEEE typically just uses “unpublished” for the required note field.

The electronic entry type is for internet references. IEEE formats electronic references differently by not using italics or quotes and separating fields with periods rather than commas. Also, the date is enclosed within parentheses and is placed closer to the title. This is probably done to emphasize that electronic references may not remain valid on the rapidly changing internet. Note also the liberal use of the howpublished field to describe the form or category of the entries. The organization and address fields may also be used. Example .bib using this type:

The nationality field provides a means to handle patents from different countries

The nationality should be capitalized. The assignee and address (of the assignee) fields are not used, however, they are provided. The type field provides a way to override the “patent” description with other patent related descriptions such as “patent application” or “patent request”:

The periodical entry type is used for journals and magazines.

The standard entry type is used for formally published standards. Alternatively, the misc entry type, along with its howpublished field, can be used to create references of standards.

Misc is the most flexible type and can be used when none of the other entry types are applicable. The howpublished field can be used to describe what exactly (or in what form) the reference is (or appears as). Possible applications include technical-report-like entries that lack an institution, white papers and data sheets.

Additional Comments

Because we are effectively creating multiple bibliographies, (one for the actual bibliography, and one for each list of references), the two LATEX commands \bibliographystyle{} and \bibliography{} are not used. They have been redefined to do nothing, and the equivalent of these commands are done automatically when necessary.

When there is a reference that should be included in the bibliography, but does not need to be explicitly referenced in the thesis, use the \nocite{} command. This command works like the \cite{} command, except it does not put the citation in the list of references, only in the bibliography. The \nocite{} command must appear after the first \newchapter{} command, or it will be ignored.

When using the option aparefs , and a citation does not have an author, (such as often occurs with a web page), the key field can be used to specify what to use in the citation instead of the author’s name.

About the Bibliography Format

The bibliography format used by the urithesis class is based on the IEEE format. See the article “How to Use the IEEEtran BIBTEX Style” by Michael Shell for more details.

Banner

Overleaf for Scholarly Writing & Publication: LaTeX Theses and Dissertations

  • Reference Managers and Overleaf
  • Adding Graphs, Tables, and Images
  • Using Templates on Overleaf
  • LaTeX Theses and Dissertations

LaTeX Theses and Dissertatons

Tips and tools for writing your LaTeX thesis or dissertation in  Overleaf, including templates, managing references , and getting started guides.

Managing References

BibTeX  is a file format used for lists of references for  LaTeX  documents. Many citation management tools support the ability to export and import lists of references in .bib format. Some reference management tools can generate  BibTeX  files of your library or folders for use in your  LaTeX  documents.

LaTeX on Wikibooks   has a  Bibliography Management  page.

Find list of BibTeX styles available on Overleaf   here

View a video tutorial on how to include a bibliography using BibTeX  here

Collaborate with Overleaf

Collaboration tools

Every project you create has a secret link. Just send it to your co-authors, and they can review, comment and edit. Overleaf synchronizes changes from all authors, so everyone always has the latest version. More advanced tools include protected projects and integration with Git.

Collaborate online and offline with Overleaf and Git

Protected projects with Overleaf Pro

Getting Started with Your Thesis or Dissertation

How to get started writing your thesis in LaTeX

Writing a thesis or dissertation in LaTeX can be challenging, but the end result is well worth it - nothing looks as good as a LaTeX-produced pdf, and for large documents it's a lot easier than fighting with formatting and cross-referencing in MS Word. Review this video from Overleaf to help you get started writing your thesis in LaTeX, using a standard thesis template from the  Overleaf Gallery .

You can  upload your own thesis template to the Overleaf Gallery   if your university provides a set of LaTeX template files or you may find your university's thesis template already in the Overleaf Gallery.

This video assumes you've used LaTeX before and are familiar with the standard commands (see our other  tutorial videos   if not), and focuses on how to work with a large project split over multiple files.

How to Write your Thesis/Dissertation in LaTeX: A Five-Part Guide

Five-Part LaTeX Thesis/Dissertation  Writing Guide

Part 1: Basic Structure   corresponding  video

Part 2: Page Layout   corresponding  video

Part 3: Figures, Subfigures and Tables   corresponding  video

Part 4: Bibliographies with Biblatex  corresponding  video

Part 5: Customizing Your Title Page and Abstract   corresponding  video

Link Your ORCID

Link yo ur  ORCiD  account  to your  Overleaf account  via the  ORCID @ CMU Portal

Open Knowledge Librarian

Profile Photo

  • << Previous: Using Templates on Overleaf
  • Last Updated: Oct 4, 2023 9:31 AM
  • URL: https://guides.library.cmu.edu/overleaf

Banner

Overleaf for LaTeX Theses & Dissertations: Home

  • Using Templates on Overleaf
  • Reference Managers and Overleaf
  • Adding Tables, Images, and Graphs

Tips and tools for writing your LaTeX thesis or dissertation in Overleaf, including templates, managing references , and getting started guides.

Managing References

BibTeX is a file format used for lists of references for LaTeX documents. Many citation management tools support the ability to export and import lists of references in .bib format. Some reference management tools can generate BibTeX files of your library or folders for use in your LaTeX documents.

LaTeX on Wikibooks has a Bibliography Management page.

Find list of BibTeX styles available on Overleaf here

View a video tutorial on how to include a bibliography using BibTeX  here

Collaborate with Overleaf

Collaboration tools

  • One version of your project accessible to collaborators via a shared link or email invitation
  • Easily select the level of access for collaborators (view, edit, or owner access)
  • Real-time commenting speeds up the review process
  • Tracked changes and full history view help to see contributions from collaborators
  • Labels help to organize and compare different versions
  • Chat in real time with collaborators right within the project

How to get started writing your thesis in LaTeX

Writing a thesis or dissertation in LaTeX can be challenging, but the end result is well worth it - nothing looks as good as a LaTeX-produced pdf, and for large documents it's a lot easier than fighting with formatting and cross-referencing in MS Word. Review this video from Overleaf to help you get started writing your thesis in LaTeX, using a standard thesis template from the Overleaf Gallery .

You can upload your own thesis template to the Overleaf Gallery if your university provides a set of LaTeX template files or you may find your university's thesis template already in the Overleaf Gallery.

This video assumes you've used LaTeX before and are familiar with the standard commands (see our other tutorial videos  if not), and focuses on how to work with a large project split over multiple files.

Add Institutional Library contact info here.

Contact Overleaf   or email [email protected]

5-part Guide on How to Write a Thesis in LaTeX

5-part LaTeX Thesis Writing Guide

Part 1: Basic Structure corresponding  video

Part 2: Page Layout corresponding  video

Part 3: Figures, Subfigures and Tables   corresponding video

Part 4: Bibliographies with Biblatex corresponding video

Part 5: Customizing Your Title Page and Abstract corresponding video

ShareLaTeX Joins Overleaf!

Read more about Overleaf and ShareLaTeX joining forces here

Link your ORCiD ID

Link your ORCiD account to your Overleaf account.

See Overleaf news   on  our blog.

  • Next: Using Templates on Overleaf >>
  • Last Updated: May 18, 2021 1:57 PM
  • URL: https://overleaf.libguides.com/Thesis

bibtex entry for my master's thesis:

@MastersThesis{Nannen:Thesis:2003,     author     =     {Volker Nannen},     title     =     {{The Paradox of Overfitting}},     school     =     {Rijksuniversiteit Groningen},     address     =     {the Netherlands},     year     =     {2003},     }

BibTeX mastersthesis template

The mastersthesis entry type is intended to be used for a Master's thesis.

Minimal template

Minimal template with required fields only for a BibTeX mastersthesis entry.

Full template

Full template including required and optional fields for a BibTeX mastersthesis entry.

Guide to BibTeX Type PhdThesis

BibTeX is a reference management tool that is commonly used in LaTeX documents. The “phdthesis” BibTeX type is used for PhD dissertations or theses. In this guide, we will explain the required and optional fields for the “phdthesis” BibTeX type.

Need a simple solution for managing your BibTeX entries? Explore CiteDrive!

  • Web-based, modern reference management
  • Collaborate and share with fellow researchers
  • Integration with Overleaf
  • Comprehensive BibTeX/BibLaTeX support
  • Save articles and websites directly from your browser
  • Search for new articles from a database of tens of millions of references

Required Fields

The “phdthesis” BibTeX type requires the following fields:

  • author : The author of the thesis.
  • title : The title of the thesis.
  • school : The name of the institution that awarded the degree.
  • year : The year the degree was awarded.

Optional Fields

In addition to the required fields, the “phdthesis” BibTeX type also has a number of optional fields that can be used to provide additional information. These fields include:

  • type : The type of the thesis, such as “PhD thesis” or “Master’s thesis”.
  • address : The location of the institution.
  • month : The month the thesis was submitted.
  • note : Any additional information about the thesis.

Here is an example of how to use the “phdthesis” BibTeX type:

In this example, the BibTeX entry defines a PhD thesis authored by John Smith titled “An Analysis of Example”. The degree was awarded in 2022 by the University of Example, and the thesis was submitted in June in Example City, CA. The type of the thesis is specified as “PhD thesis”, and a note is included that provides a URL for the thesis.

Citation guides

All you need to know about citations

How to cite a master's thesis in APA

APA masters thesis citation

  • Google Docs

To cite a master's thesis in a reference entry in APA style 6th edition include the following elements:

  • Author(s) of the thesis: Give the last name and initials (e. g. Watson, J. D.) of up to seven authors with the last name preceded by an ampersand (&). For eight or more authors include the first six names followed by an ellipsis (…) and add the last author's name.
  • Year of publication: Give the year in brackets followed by a full stop.
  • Title of the master's thesis: Only the first letter of the first word and proper nouns are capitalized.
  • URL: Give the full URL where the document can be retrieved from.

Here is the basic format for a reference list entry of a master's thesis in APA style 6th edition:

Author(s) of the thesis . ( Year of publication ). Title of the master's thesis (Master's thesis). Retrieved from URL

If the thesis is available from a database, archive or any online platform use the following template:

  • Author(s) of the thesis: Give the last name and initials (e. g. Watson, J. D.) of up to 20 authors with the last name preceded by an ampersand (&). For 21 or more authors include the first 19 names followed by an ellipsis (…) and add the last author's name.
  • Title of the Master's thesis: Only the first letter of the first word and proper nouns are capitalized.
  • Publication number: Give the identification number of the thesis, if available.
  • Name of the degree awarding institution: Give the name of the institution.
  • Name of Platform: Give the name of the database, archive or any platform that holds the thesis.
  • URL: If the thesis was found on a database, omit this element.

Here is the basic format for a reference list entry of a master's thesis in APA style 7th edition:

Author(s) of the thesis . ( Year of publication ). Title of the Master's thesis ( Publication number ) [Master's thesis, Name of the degree awarding institution ]. Name of Platform . URL

If the thesis has not been published or is available from a database use the following template:

  • Location: Give the location of the institution. If outside the United States also include the country name.

Author(s) of the thesis . ( Year of publication ). Title of the master's thesis (Unpublished master's thesis). Name of the degree awarding institution , Location .

If the thesis is not published, use the following template:

Author(s) of the thesis . ( Year of publication ). Title of the master's thesis [Unpublished master's thesis]. Name of the degree awarding institution .

APA reference list examples

Take a look at our reference list examples that demonstrate the APA style guidelines for a master's thesis citation in action:

A master's thesis found in an online platform

Bauger, L . ( 2011 ). Personality, passion, self-esteem and psychological well-being among junior elite athletes in Norway ( Master's Thesis ). Retrieved from https://pdfs.semanticscholar.org/29a9/ef96c34e577211246b83b11813a2585033c5.pdf
Bauger, L . ( 2011 ). Personality, passion, self-esteem and psychological well-being among junior elite athletes in Norway [ Master's Thesis , University of Tromsø ]. Semantic Scholar . https://pdfs.semanticscholar.org/29a9/ef96c34e577211246b83b11813a2585033c5.pdf

An unpublished master's thesis

Aube, K. E . ( 2019 ). A comparison of water main failure prediction models in San Luis Obispo, CA ( Unpublished master's thesis ). Cal Poly , San Luis Obispo, CA .
Aube, K. E . ( 2019 ). A comparison of water main failure prediction models in San Luis Obispo, CA [ Unpublished master's thesis ]. Cal Poly .

apa cover page

This citation style guide is based on the official Publication Manual of the American Psychological Association ( 6 th edition).

More useful guides

  • APA Referencing: Theses
  • Citation Help for APA: Master's Thesis or Project
  • APA Thesis, dissertation or exegesis?

More great BibGuru guides

  • MLA: how to cite a photo
  • AMA: how to cite a film
  • Chicago: how to cite a song

Automatic citations in seconds

Citation generators

Alternative to.

  • NoodleTools
  • Getting started

From our blog

  • 📚 How to write a book report
  • 📝 APA Running Head
  • 📑 How to study for a test

Template for a Masters or Doctoral Thesis

This LaTeX template is used by many universities as the basis for thesis and dissertation submissions, and is a great way to get started if you haven't been provided with a specific version from your department.

This version of the template is provided by Vel at LaTeXTemplates.com , and is already loaded in Overleaf so you can start writing immediately.

Checkout this short video to see how to easily create and edit new chapters as your thesis develops.

Please read the unofficial quick guide to the template; it contains some tips and suggestions on how to modify certain things.

(Updated 27/08/17)

Template for a Masters or Doctoral Thesis

Have you checked our knowledge base ?

Message sent! Our team will review it and reply by email.

IMAGES

  1. How to write a thesis using LaTeX **full tutorial**

    how to cite master thesis in latex

  2. How to Reference in Latex

    how to cite master thesis in latex

  3. Typesetting my Master’s Thesis in LaTeX

    how to cite master thesis in latex

  4. How to cite references in LaTeX

    how to cite master thesis in latex

  5. How to Cite Someone's Master Thesis in Latex?

    how to cite master thesis in latex

  6. GitHub

    how to cite master thesis in latex

VIDEO

  1. How to add citation in latex?

  2. L06: Using the Stellenbosch thesis LaTeX template in Overleaf

  3. How to write the preface of a PhD thesis using latex, Part-II

  4. Insert PDF document into Latex document

  5. Sample Thesis in LaTeX (UMS)

  6. Write mathematical equation using LaTex software

COMMENTS

  1. Cite Master's Thesis using natbib

    1. I'm currently writing my Bachelor's thesis and I want to cite a Master's thesis. I have some issues and I'm really new to Latex why I do not know how to help myself. As you always want a code example, here you go: \usepackage{natbib} \bibliographystyle{unsrt}

  2. How to Write a Thesis in LaTeX (Part 4): Bibliographies with ...

    Citations. Now let's look at citations. To cite a source in the text we use one of the biblatex citation commands. The simplest is the \cite command which prints the citation without any brackets unless you are using the numeric or alphabetic styles. We'll discuss styles a little later on. For example we may cite a source in the text like this:

  3. Guide to Writing Your Thesis in LaTeX

    How to Add a Bibliography Entry. When we want to refer to a source in the thesis, we place an entry for that source in the file references.bib, then cite the source in the thesis with the \cite{LABEL} command. The syntax for an entry in the references.bib file is of the form: @ ENTRYTYPE { LABEL,

  4. Guide to BibTeX Type MasterThesis

    Required Fields. The "masterthesis" BibTeX type requires the following fields: author: The author of the thesis.; title: The title of the thesis.; school: The name of the institution that awarded the degree.; year: The year the degree was awarded.; Optional Fields. In addition to the required fields, the "masterthesis" BibTeX type also has a number of optional fields that can be used ...

  5. Bibliography management in LaTeX

    Introduction. When it comes to bibliography-management packages, there are three main options in LaTeX: bibtex, natbib and biblatex. This article explains how to use the biblatex package, to manage and format the bibliography in a LaTeX document.biblatex is a modern option for processing bibliography information, provides an easier and more flexible interface and a better language localization ...

  6. LaTeX Theses and Dissertations

    Review this video from Overleaf to help you get started writing your thesis in LaTeX, using a standard thesis template from the Overleaf Gallery. You can upload your own thesis template to the Overleaf Gallery if your university provides a set of LaTeX template files or you may find your university's thesis template already in the Overleaf Gallery.

  7. PDF Writing a Master's Thesis in LaTeX

    The LaTeX document class kulemt. The document class kulemt can be used to generate a master's thesis text which is conform to the guidelines of the KU Leuven Faculty of Engineering. It is actually an extension of the memoir document class [20], which already includes the functionality of the most useful LaTeX packages.

  8. Bibliography management with bibtex

    together with the thebibliography block from before, this is what gets rendered into your PDF when you run a \(\mathrm{\LaTeX}\) processor (i.e. any of latex, pdflatex, xelatex or lualatex) on your source file:. Figure 1: Citing entries from a thebibliography list. Notice how each \bibitem is automatically numbered, and how \cite then inserts the corresponding numerical label.

  9. 10 Tips on writing a Master Thesis in LaTeX with Overleaf

    Images: an folder that contains sub-folders with images for each chapter. Tables: contains all the tables you have used. 4. Add a \note command. Sometimes you want to add a note, to do something later. Just writing, "todo" in those places simply does not cut it, as it is hard to find.

  10. LibGuides: Overleaf for LaTeX Theses & Dissertations: Home

    5-part Guide on How to Write a Thesis in LaTeX. 5-part LaTeX Thesis Writing Guide. Part 1: Basic Structure corresponding video. Part 2: Page Layout corresponding video. Part 3: Figures, Subfigures and Tables corresponding video. Part 4: Bibliographies with Biblatex corresponding video. Part 5: Customizing Your Title Page and Abstract ...

  11. Writing your MSc/PhD thesis with Latex using Overleaf

    Here Thifhe Bucher explains how simple is moving from Word to Latex to write your MSc and PhD theses using the Overleaf platform. The good thing with Overlea...

  12. master's thesis bibtex entry

    bibtex entry for my master's thesis: @MastersThesis{Nannen:Thesis:2003, author = {Volker Nannen}, title = {{The Paradox of Overfitting}},

  13. BibTeX template: mastersthesis

    BibTeX mastersthesis template. The mastersthesis entry type is intended to be used for a Master's thesis. Minimal template. Minimal template with required fields only for a BibTeX mastersthesis entry.

  14. How to Write a Thesis in LaTeX (Part 1): Basic Structure

    The preamble. In this example, the main.tex file is the root document and is the .tex file that will draw the whole document together. The first thing we need to choose is a document class. The article class isn't designed for writing long documents (such as a thesis) so we'll choose the report class, but we could also choose the book class.. We can also change the font size by adding square ...

  15. PDF A Somewhat Long-winded Example Thesis to Help With Latex and Intended

    thbib.bib: Contains a bibliographical database. thesis.tex: Contains information for the title page, and other front-matter. Includes the files abstract.tex, body.tex, and append.tex. Defines the bibliographical style (siam in this example) and creates the bibliography using the file thbib.tex.

  16. Guide to BibTeX Type PhdThesis

    type: The type of the thesis, such as "PhD thesis" or "Master's thesis". address: The location of the institution. month: The month the thesis was submitted. note: Any additional information about the thesis. Example. Here is an example of how to use the "phdthesis" BibTeX type:

  17. How to cite a master's thesis in APA

    Year of publication: Give the year in brackets followed by a full stop. Title of the Master's thesis: Only the first letter of the first word and proper nouns are capitalized. Publication number: Give the identification number of the thesis, if available. Name of the degree awarding institution: Give the name of the institution.

  18. Template for a Masters or Doctoral Thesis

    This LaTeX template is used by many universities as the basis for thesis and dissertation submissions, and is a great way to get started if you haven't been provided with a specific version from your department. This version of the template is provided by Vel at LaTeXTemplates.com, and is already loaded in Overleaf so you can start writing ...