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

The MIT thesis template in LaTeX

The latex template.

The current MIT thesis template was developed in 2023, using up-to-date LaTeX coding, to meet the current formatting requirements of the MIT Libraries. The title and abstract pages are automatically laid out from information provided by the user. This template includes options to use a variety of fonts, and it is compatible with either pdfTeX or unicode engines such as luaLaTeX. When using LaTeX formats dated November 2022 or later, the resulting pdf file meets the PDF/A-2b archivability standard. A standard TeX Live installation includes all other packages required by the template.

  • Download The most current LaTeX files for this template are distributed through the Comprehensive TeX Archive Network (CTAN): https://ctan.org/pkg/mitthesis
  • Documentation Documentation for the template in pdf format Documentation: here . -->
  • Gallery of fonts Sample theses in the font sets defined by the template. Gallery of fonts: here . -->
  • Sample title pages Sample title pages for various combinations of authors and degrees. Sample title pages: are here . -->
  • Overleaf The template is also in Overleaf.com's template gallery. Overleaf.com: , here .--> Learn more about Overleaf at MIT .

This template was written by John Lienhard at the request of the MIT Libraries.

Specifications for MIT theses

The formatting requirements for MIT theses are set by the MIT Libraries, as described at this url: http://libraries.mit.edu/archives/thesis-specs/ . Questions regarding these specifications should be directed to [email protected] .

The original LaTeX 2.09 template was written by Stephen Gildea in the late 1980s (also in CTAN, here ). That template was edited by many later students, leading to the files archived here.

LaTeX has changed greatly since the original MIT thesis template was written. LaTeX 2.09 was replaced by LaTeX2e in 1994. New engines were developed, particularly pdfTeX during the 1990s and Unicode-aware engines in the decades that followed. Many packages and fonts were developed to accompany the original platform, particularly after 2000; and major updates to the LaTeX kernel began in 2018. Over the years, the MIT Libraries have changed the required format several times, especially as electronic thesis submission has become the norm. The original template served MIT well; but by the early 2020s, it was substantially out of date. That situation motivated the creation of this new template.

because LaTeX matters

Writing a thesis in latex.

Writing a thesis is a time-intensive endeavor. Fortunately, using LaTeX, you can focus on the content rather than the formatting of your thesis. The following article summarizes the most important aspects of writing a thesis in LaTeX, providing you with a document skeleton (at the end) and lots of additional tips and tricks.

Document class

The first choice in most cases will be the report document class:

See here for a complete list of options. Personally, I use draft a lot. It replaces figures with a box of the size of the figure. It saves you time generating the document. Furthermore, it will highlight justification and hyphenation errors ( Overfull \hbox ).

Check with your college or university. They may have an official or unofficial template/class-file to be used for writing a thesis.

Again, follow the instructions of your institution if there are any. Otherwise, LaTeX provides a few basic command for the creation of a title page.

maketitle

Use \today as \date argument to automatically generate the current date. Leave it empty in case you don’t want the date to be printed. As shown in the example, the author command can be extended to print several lines.

For a more sophisticated title page, the titlespages package has a nice collection of pre-formatted front pages. For different affiliations use the authblk package, see here for some examples.

Contents (toc/lof/lot)

Nothing special here.

The tocloft package offers great flexibility in formatting contents. See here for a selection of possibilities.

Often, the page numbers are changed to roman for this introductory part of the document and only later, for the actual content, arabic page numbering is used. This can be done by placing the following commands before and after the contents commands respectively.

LaTeX provides the abstract environment which will print “Abstract” centered as a title.

abstract

The actual content

The most important and extensive part is the content. I strongly suggest to split up every chapter into an individual file and load them in the main tex-file.

In thesis.tex:

In chapter1.tex:

This way, you can typeset single chapters or parts of the whole thesis only, by commenting out what you want to exclude. Remember, the document can only be generated from the main file (thesis.tex), since the individual chapters are missing a proper LaTeX document structure.

See here for a discussion on whether to use \input or \include .

Bibliography

The most convenient way is to use a bib-tex file that contains all your references. You can download bibtex items for articles, books, etc. from Google scholar or often directly from the journal websites.

Two packages are commonly used to personalize bibliographies, the newer biblatex and the natbib package, which has been around for many years. These packages offer great flexibility in customizing the look of a bibliography, depending on the preference in the field or the author.

Other commonly used packages

  • graphicx : Indispensable when working with figures/graphs.
  • subfig : Controlling arrangement of several figures (e.g. 2×2 matrix)
  • minitoc : Adds mini table of contents to every chapter
  • nomencl : Generate and format a nomenclature
  • listings : Source code printer for LaTeX
  • babel : Multilingual package for standard document classes
  • fancyhdr : Controlling header and footer
  • hyperref : Hypertext links for LaTeX
  • And many more

Minimal example code

I’m aware that this short post on writing a thesis only covers the very basics of a vast topic. However, it will help you getting started and focussing on the content of your thesis rather than the formatting of the document.

Share this:

16 comments.

' src=

8. June 2012 at 7:09

I would rather recommend a documentclass like memoir or scrreprt (from KOMA-Script), since they are much more flexible than report.

' src=

8. June 2012 at 8:12

I agree, my experience with them is limited though. Thanks for the addendum. Here is the documentation: memoir , scrreprt (KOMA script)

' src=

8. June 2012 at 8:02

Nice post Tom. I’m actually writing a two-part (or three) on Writing the PhD thesis: the tools . Feel free to comment, I hope to update it as I write my thesis, so any suggestions are welcome.

8. June 2012 at 8:05

Thanks for the link. I just saw your post and thought I should really check out git sometimes :-). Best, Tom.

8. June 2012 at 8:10

Yes, git is awesome. It can be a bit overwhelming with all the options and commands, but if you’re just working alone, and probably on several machines, then you can do everything effortlessly with few commands.

11. June 2012 at 2:15

That’s what has kept me so far. But I’ll definitely give it a try. Thanks!

' src=

8. June 2012 at 8:08

What a great overview. Thank you, this will come handy… when I finally get myself to start writing that thesis 🙂

8. June 2012 at 14:12

Thanks and good luck with your thesis! Tom.

' src=

9. June 2012 at 4:08

Hi, I can recommend two important packages: lineno.sty to insert linenumbers (really helpful in the debugging phase) and todonotes (allows you to insert todo-notes for things you still have to do.)

11. June 2012 at 0:48

Thanks Uwe! I wrote an article on both, lineno and todonotes . Here is the documentation: lineno and todonotes for more details.

' src=

12. June 2012 at 15:51

Thanks for the post, i’m currently writing my master thesis 🙂

A small note: it seems that subfig is deprecated for the subcaption package: https://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions#Subfloats

12. June 2012 at 16:05

Hey, thanks for the tip. Too bad they don’t say anything in the documentation apart from the fact that the packages are not compatible.

' src=

1. August 2012 at 21:11

good thesis template can be also found here (free): http://enjobs.org/index.php/downloads2

including living headers, empty pages, two-sided with front and main matter as well as a complete structure

2. August 2012 at 11:03

Thanks for the link to the thesis template!

' src=

15. November 2012 at 22:21

Hi Tom, I’m writing a report on spanish in LaTex, using emacs, auctex, aspell (~170pags. ~70 files included by now) and this blog is my savior every time because I’m quite new with all these.

The question: Is there anyway (other than \- in every occurrence) to define the correct hyphenation for accented words (non english characters like é)? I have three o four accented words, about the subject of my report, that occur near 100 times each, across several files, and the \hyphenation{} command can’t handle these.

20. November 2012 at 3:47

I was wondering what packages you load in your preamble. For a better hyphenation (and easier typing), you should use these packages:

See here for more details.

If this doesn’t help, please provide a minimal working example to illustrate the problem.

Thanks, Tom.

Leave a Reply Cancel reply

A LaTeX template for thesis, dissertations and similar monograph-like documents

View the Project on GitHub joaomlourenco/novathesis

  • Download ZIP File
  • Download TAR Ball
  • View On GitHub

GitHub Workflow Status (with branch)

With a Local LaTeX Installation

With a remote cloud-based service, problems and difficulties, suggestions, bugs and feature requests, word templates.

Star History Chart

If you choose to use this project, please:

  • Give it a star by clicking the (⭐️) at the top right of the project’s page .
  • Make a small donation ( pay me a beer! )
  • Cite the NOVAthesis manual in your thesis/dissertation (e.g., in the acknowledgments) with \cite{novathesis-manual} (the correct bibliographic reference will be added automatically).

The “ novathesis ” LaTeX template is an Open Source project for writing thesis, dissertations, and other monograph-like documents, which…

  • Just select the School, provide the cover info, your chapters with text… and you’re done!
  • It’s LaTeX! What would you expect?! 😉
  • E.g., multiple chapter styles, multiple font styles, automatic book spine generation, …
  • Currently supports +20 Schools, drawing the covers and typesetting the text according to the rules of each School.

This work is licensed under the LaTeX Project Public License v1.3c. To view a copy of this license, visit the LaTeX project public license .

Getting Started

See below for alternatives to a local LaTeX installation

See “ minimal installation ” for instructions on how to build/use a minimal installation of LaTeX (<100 MB vs. 5GB for tex-live), which is just enough to compile the template successfully

  • Windows: install TeX-Live or MikTeX .
  • Linux: install TeX-Live or MikTeX .
  • macOS: install MacTeX (a macOS version of TeX-Live ) or MikTeX .
  • Cloning the GitHub repository with git clone --depth=1 https://github.com/joaomlourenco/novathesis.git ; or
  • Downloading the latest version from the GitHub repository as a Zip file
  • The main file is named “ template.tex ”.
  • Either load it in your favorite LaTeX text editor or compile it in the terminal with latexmk -shell-escape -file-line-error -pdf template . If you use a LaTeX text editor, please notice that the NOVAthesis template uses biber and not bibtex to process the bibliography, which means that most probably you have to open the Editor Preferences and somewhere (depends on the Editor) change bibtex to biber .
  • If Murphy is elsewhere, LaTeX will create the file “ template.pdf ”, which you may open with your favorite PDF viewer.
  • Edit the files in the “ Config ” folder:
File Contents
Options specific for the package.
Configure the template, i.e., the document type, the school, the used languages, etc.
Configure the lists to be printed (table of contents, list of figures, list of tables, list of listings, etc).
   
Configuration specific to
Configuration specific to
Configuration specific to
Configuration specific to
Configuration specific to (all schools)
  • See 3. above.
  • You’re done with a beautifully formatted thesis/dissertation! 😃

See above for using a local installation of LaTeX

NOVAthesis v6.10.10 is available as an Overleaf template . Just select open as template and follow from step 3 above !

  • Download the latest version from the GitHub repository as a Zip file .
  • Login to your favorite LaTeX cloud service. I recommend Overleaf but there are alternatives (these instructions apply to Overleaf and you’ll have to adapt for other providers).
  • In the menu select New project -> Upload project
  • Upload the zip with all the “novathesis” files.
  • Select “ template.tex ” as the main file.
  • Follow from step 3 above

image

  • Install LaTeX in your computer and use a the template locally !
  • Opt for a hassle free solution and buy a (student) plan in Overleaf .

Getting Help

Check the wiki and have some hope! :smile:

If you couldn’t find what you were looking for, ask for help in:

  • The GitHub Discussions page (only EN please) at https://github.com/joaomlourenco/novathesis/discussions.
  • The Facebook page (PT or EN) at https://www.facebook.com/groups/novathesis.
  • The Reddit novathesis community at r/novathesis .
  • You may also give a look at the novathesis blog at https://novathesis.blogspot.pt .

Please don’t try to contact me directly for questions or support, by email or any other channel! I will not answer such requests… The GitHub Discussions page and the Facebook page are the right places to ask for help and support!

  • Do you have a suggestion? Please add it to the wiki and help other users!
  • Did you find a bug? Please open an issue . Thanks!
  • Would you like to request a new feature (or support of a new School)? Please open an issue . Thanks!

List of Supported Schools

  • NOVA School for Science and Technology (FCT-NOVA)
  • PhD in Information Management
  • Master in Geographical Information Systems and Science
  • Master in Statistics and Information Management
  • Master in Information Management
  • Master in Geospatial Technologies
  • Master in Data Science and Advanced Analytics
  • Masters in Geospatial Technologies
  • National School of Public Heath (ENSP-NOVA)
  • Faculdade de Ciências Humanas e Sociais (FCSH-NOVA)
  • Instituto de Tecnologia Química e Biologica Antonio Xavier (ITQB-NOVA)
  • Instituto Superior Técnico (IST-ULISBOA)
  • Faculdade de Ciências (FC-ULISBOA)
  • Faculdade de Medicina Veterinária (FMV-ULISBOA)
  • Escola de Arquitetura (EA-UMIMHO)
  • Escola de Ciências (EC-UMIMHO)
  • Escola de Direito (ED-UMIMHO)
  • Escola de Economia e Gestão (EEG-UMIMHO)
  • Escolha de Engenharia (EE-UMIMHO)
  • Escola de Medicina (EM-UMIMHO)
  • Escola de Psicologia (EP-UMIMHO)
  • Escola Superior de Enfermagem (ESE-UMIMHO)
  • Instituto de Ciências Sociais (ICS-UMIMHO)
  • Instituto de Educação (IE-UMIMHO)
  • Instituto de Letras e Ciências Humanas (ILCH-UMIMHO)
  • Instituto de Investigação em Biomateriais, Biodegradáveis e Biomiméticos (I3Bs-UMIMHO)

Departamento de Engenharia Informática e Sistemas de Informação (ULHT-DEISI)

<!– * ISCTE – Instituto Universitário de Lisboa

Escola de Tecnologia e Arquitectura (ETA-ISCTE-IUL) NOTE: this template is outdated (there are new covers/specifications) –>

  • Instituto Superior de Engenharia de Lisboa (ISEL-IPL)

Instituto Politécnico de Setúbal

  • Escola Superior de Tecnologia do Barreiro (ESTB-IPS)
  • Escola Superior de Enfermagem do Porto (ESEP)

Although the template goes far beyond the cover… some covers from the supported schools are is display below.

These are not official templates for FCT-NOVA nor any other School, although we have done our best to make it fully compliant to each School regulations for thesis/dissertation presentation.

All contributors , both sporadic and regular, are welcome. :) Please contact me to join the team.

If you are here looking for the (deprecated) Word templates (not maintained anymore), please go to this other repository .

Limited Business Hours

The Office of Graduate Education will be participating in a week-long training from July 29 – August 2, 2024. During this week we will have limited business hours. The office will be closed on Monday, July 29 and on Thursday, August 1 from 1 p.m. until 4 p.m. We appreciate your patience with our response time during this week and will do our best to respond to all inquiries as quickly as we can.

Graduate Education

Office of graduate and postdoctoral education, thesis templates.

The following thesis format templates should help you get started with formatting your thesis or dissertation. Georgia Tech provides free Overleaf Professional accounts for all students, faculty, and staff who would like to use the collaborative, online LaTeX editor for their projects.

  • LaTeX Template (.zip) - updated May 2020
  • Featured LaTeX templates on Overleaf
  • Word Thesis Template (.docx) - updated August 2016
  • Georgia Tech Engineering Reference Management System (GTERMS)

LaTeX Resources

  • LaTeX Project
  • Set the Quick Build command configuration to: “PdfLaTeX + Bib(la)tex) + PdfLaTeX (x2) + View Pdf”.
  • Use the Quick Build command to compile and view your .pdf file.
  • If you decide to use a “build” subdirectory for output files, you must point BibTeX to the proper subdirectory.

LaTeX is a powerful text processing and formatting tool that produces clean, consistent results. This high-quality typesetting system is a free service provided by Georgia Tech. It is available on many platforms and can be used with the editor of your choice. LaTeX is the de facto standard for the communication and publication of scientific documents.

Although Graduate Education does not offer direct technical support, Tech does provide help via campus partners such as the Library and Overleaf (online LaTeX editor). Please check the Library events page for courses on LaTex, or contact Overleaf directly.

Many students have also found useful tips for dealing with specific problems by entering keywords such as "LaTeX formatting table captions" in their favorite search engines.

Most Common LaTeX to PDF Problem

The most common problem we see with Electronic Theses & Dissertations (ETDs) created in LaTeX is the altering of the page size, particularly an increase of the bottom margin to more than one inch, and sometimes an accompanying decrease in the top and/or right margins to less than the requisite one inch. Less frequently, there will also be problems with figures disappearing or changing appearance. The sizing error may be introduced inadvertently during the conversion from .dvi to .pdf or .ps when the program doing the converting defaults to the A4 European page size. Always check your PDF file after conversion, even if your source file looked perfect.

The following fixes have been found by your fellow Tech graduate students and passed along to the Graduate Thesis Office. We hope they help you:

  • First, before converting the .tex file to .dvi, make sure the class header file in your .tex file says something like "\documentclass[12pt, letter]{article}".
  • If you are converting the resulting .dvi file to a .ps file, be sure the dvips options specify "-P pdf -t letter".
  • When you are converting to .pdf from either the .dvi file directly or from a .ps file, locate the C:\texmf\dvipdfm\config\config\ or analogous folder for PDFs in your system. Replace the line "p a4" with "p letter".

Check our frequently asked questions (FAQ) to see if your question has already been answered. Else, contact [email protected] .

Accessibility Information

Download Microsoft Products   >      Download Adobe Reader   >

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.

An academic thesis, also known as a dissertation, is a substantial work produced by a graduate student to communicate their research and earn a degree. A thesis will typically include a review of the current state of research in the field of study followed by a central hypothesis to be investigated. The bulk of the thesis will then focus on the methods and results of the research performed, followed by a discussion on how the results add to the field in general. Theses are long, highly structured and include a lot of advanced document elements.

latex for master thesis

This template is designed for writing books and graduate-level theses and provides numerous examples and documentation to enable complex requirements. The design features a relatively narrow main text column with an adjacent wide margin to house notes, figures, tables, citations and captions.

  • View Template Information

Masters/Doctoral Thesis

This template provides a full framework for writing a graduate level thesis. It is carefully structured and separated into multiple parts for easy editing. Included are the following pages/sections: a cover page, declaration of authorship, quotation, abstract, acknowledgements, contents page(s), list of figures, list of tables, abbreviations, physical constants, symbols, dedication, example chapter, example appendix and bibliography.

Classicthesis Typographic Thesis

This template has been designed as a homage to the Elements of Typographic Style. As such, it has an air of efficiency and optimal design. It is suitable for any high-level degree thesis such as for a PhD, Masters or Honors. Sections within the thesis are clearly separated in a consistent way, as are sections within each chapter. The default structure of the thesis proceeds in the following order: title page, dedication, abstract, publications, acknowledgements, contents, list of tables/figures/listings, acronyms, content chapters, appendices, bibliography, colophon and declaration.

Maggi Memoir Thesis

This template uses the memoir document class to beautifully typeset a thesis. It is suitable for any high-level degree thesis such as for a PhD, Masters or Honors. The layout of the content is in a thin format to promote easy reading and the template features advanced specification of margins and trimming. The thesis boasts a professional look which is immediately obvious from the title page itself and carries through the design of the rest of the document. Three custom fonts are used in the template to match the design and beautifully display your content.

latex for master thesis

LaTeX Templates Information

General enquiries [email protected]

Most templates licensed under CC BY-NC-SA 4.0

LaTeX Templates is developed in New Zealand

© Creodocs Limited. All Rights Reserved.

Navigation Menu

Search code, repositories, users, issues, pull requests..., provide feedback.

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly.

To see all available qualifiers, see our documentation .

  • Notifications You must be signed in to change notification settings

LaTeX template for Master, Bachelor, Diploma, and Student Theses

latextemplates/scientific-thesis-template

Folders and files.

NameName
656 Commits

Repository files navigation

Latex template for scientific theses.

This template is a general template for scientific theses.

Currently, it is the unofficial LaTeX template for Master, Bachelor, Diploma, and Student Theses.

See docs/ or http://latextemplates.github.io/scientific-thesis-template/ for documentation of the template.

The license of this work is CC0 , which corresponds to "public domain".

The images in logos are subject to other copyrights from other parties:

  • UPB_LOGO_GB_RGB_15.pdf and UPB_Logo_RGB_D_2012.pdf are copyright Paderborn University. Refer to https://www.uni-paderborn.de/universitaet/marketing/design-vorgaben-templates/ for proper use.
  • UBP-background-picture.* are demonstration files generated using an educational edition of Microsoft Office. They can be used in a scientific context only. For commercial use, please change them.
  • UBP-background-picture.pdf is generated out of UBP-background-picture.pptx and is free for personal use only.

Releases 17

Sponsor this project, contributors 28.

Penn Arts & Sciences Logo

  • University of Pennsylvania
  • School of Arts and Sciences
  • Penn Calendar

Department of Mathematics

Search form.

Penn Arts & Sciences Logo

Style files (LaTeX) for theses at Penn Math

Theses at Penn (masters and Ph.D.) must be submitted according to the  official university guidelines .

The following style files can serve as a guide in preparing masters or doctoral theses in the correct format. (You should still check the official university website listed above, to see other details and to adjust to any changes that may have been made.)

  • Ph.D. LaTeX style file (The University provides a standard LaTeX template that complies with all formatting requirements)
  • PH.D. Dissertation Sample Title Page
  • Ph.D. Dissertation Manual
  • Masters thesis style
  • Masters Thesis Title Page Sample.pdf
  • Masters Thesis LaTeX style

Sign up for May 2024 Graduation is now open. Apply for degree at https://srfs.upenn.edu/student-records/GradApp . View the Graduation Calendar for more information.

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

Quelldateien

Kontaktiere uns.

Hast du dir schon Wissensdatenbank angeschaut?

Anforderung gesendet, danke.

Email: 

Stack Exchange Network

Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

How to properly reference a thesis?

I am using the following:

And I have a PhD Thesis in my references directory as show below:

It looks like this

I don't understand where I am making mistake. For other 35 references everything is fine. Thank you for your contribution, in advance.

Ingmar's user avatar

  • The double curly brackets may be the problem ( title = {{Some very very etc}} instead of title = {Some very very etc} ), do you have a particular reason for using double brackets there? –  Marijn Commented Dec 7, 2020 at 19:19

You probably have \usepackage{ulem} somewhere in your preamble (i.e., at the start of your document). This redefines the \emph command (for emphasis, by default this is printed in italics) to underline. The bibliography uses emphasis, therefore the title becomes underlined. Underlines do not always correctly handle line breaks, in this case the line in the bibliography does not get the intended line break (while in the main document underlines with ulem do get correct line breaks).

As a solution, the ulem package provides the package option normalem (i.e., normal emphasis) that restores emphasis to italics, which solves the problem.

To reproduce the issue:

enter image description here

  • Thank you very much, your solution worked like a charm, and saved me from a lot of trouble. –  Peclet Commented Dec 11, 2020 at 18:03

You must log in to answer this question.

Not the answer you're looking for browse other questions tagged citing thesis ieee-style ..

  • Featured on Meta
  • Site maintenance - Tuesday, July 23rd 2024, 8 PM - Midnight EST (3 AM - 7 AM...
  • Announcing a change to the data-dump process
  • Upcoming initiatives on Stack Overflow and across the Stack Exchange network...

Hot Network Questions

  • Superposition principle and Small signal analysis
  • Overflows and underflows in Python
  • Is “faith” sometimes a work by us, and sometimes a work of God?
  • Did firearm projectiles start being rifled before barrels?
  • On a trigonometric inequality by Huygens
  • How to address past academic misconduct as a new faculty member?
  • Assign condition to variable
  • Initializing a map container only if it is not already initialized in Leaflet
  • Why different signs: Nachash vs Tannin?
  • Why is 負ける here used transitively?
  • Use the decorate function and mark points on a curve to draw tangents
  • How to disconnect the supply line from these older bathroom faucets?
  • how to find a good change of variables to solve these kinds of multi-integral questions?
  • Can epic magic escape the Demiplane of Dread?
  • Applying a voltage by DAC to a Feedback pin of a DC-DC controller
  • Integration of derivatives
  • Bosch 625Wh: How to Charge Spare Battery At Home?
  • ELI5: If SSL encrypts traffic, why does it expire?
  • Where is git-prompt.sh located in Ubuntu 24.04?
  • FDA regulation of end user non-medical software
  • How do you simplify the cosine of this special angle?
  • Sobolev spaces are smooth? Their dual is strictly convex?
  • How can the diode conduct in negative half cycle of AC signal in clamper circuit?
  • Tiny worms in blackberries

latex for master thesis

Skip to Content

Master Graduation Information - Thesis Plan

This information is supplied by the Graduate School at the University of Colorado at Boulder. The links below provide the necessary forms and information to complete the requirements for graduation. Please review deadlines carefully for the semester in which you plan to earn your degree. If at any time you have any questions or problems, please contact the Graduate School at 303-492-8220 or  [email protected] .

Graduation Deadlines

This includes all the deadlines for upcoming semesters. Forms must be submitted to the Graduate School by the deadlines for the indicated graduation. These deadlines apply regardless of attendance at the commencement ceremony. (Note: if you do not meet the graduation deadline for your final exam, but can complete the exam before the first day of class for the upcoming semester, you will not be required to register for another semester, but your paperwork will be processed for the next scheduled commencement date. Plan ahead carefully, as this means the exam must be done on or before the Friday before classes begin.) International students in F-1 or J-1 status must consult with International Student and Scholar Services ( located in the Center for the Community, room S355 ) in these cases.  F-1 and J-1 regulations require enrollment in order to maintain valid F-1 or J-1 status. You must be advised by an ISSS advisor if you will not have future enrollment.

Online Graduation Application 

Students must must  apply online to graduate  through  buff portal  on the “apply for graduation” card in order to have the degree awarded. This notifies the Graduate School and your department that you intend to graduate, and it provides necessary information to the Registrar's Office for ordering and shipping diplomas. If you do not complete requirements for the graduation you indicate on the online application, you must apply online to graduate for the new graduation date. You must apply to graduate online whether or not you plan to attend the ceremony. Detailed instructions for applying to graduate are available on the Office of the Registrar's website .

Candidacy Application for an Advanced Degree

The courses you and your department agree will be used to fulfill the requirements for your degree program are listed on this form. Applications follow a workflow process and must be approved by the academic department before they are directed to the Graduate School.

Master Examination Report

All students completing a thesis must present a final defense of the thesis to the thesis committee. Notice of the examination must be provided to the Graduate School using the master's final examination form  two weeks before the exam with the date and committee members names, for committee approval.Through a workflow process, the Graduate School and your graduate program must approve your committee, and the form will be sent to your committee members. The completed form with committee member signatures will be returned to the Graduate School and your graduate program.

Thesis Specifications & Submission Information

The specifications document includes all the necessary information for formatting your thesis. The Graduate School strongly encourages you to email your document for a pre-check of the format, prior to the deadline date, before submitting electronically. Please email a pdf of your document to  [email protected] .  The dissertation must be submitted electronically, by the deadline, to ProQuest/UMI.   The Thesis Approval Form (TAF) must be uploaded as a one page supplememental file with the thesis in order for the submission to be complete. 

Thesis Final Grade Report 

All students completing a thesis plan master's degree will be assigned a grade for thesis hours. Please contact your graduate program assistant to ensure that the final grade report process has been initiated by your department.

Commencement Ceremony, Transcript, and Diploma Information

CU Boulder hosts one commencement ceremony in the spring to celebrate our graduates every year. Whether you’re graduating in the fall, spring or summer semester, you're encouraged to participate in the commencement ceremony.  Apply for graduation  on the Buff Portal by April 1, selecting the term in which you expect to complete your degree requirements to have your name included in the commencement program. 

Be sure to see the  CU Boulder commencement website  for additional information about upcoming conferral, recognition and commencement activities.. Ensure that you have updated your diploma name and address by the posted deadline; learn more about diplomas and transcripts on the Office of the Registrar's website .

  • Academic Programs & Degrees
  • Academic Forms
  • Doctoral Graduation Information
  • Master's Graduation Deadlines
  • Thesis Plan
  • Non-Thesis Plan
  • Master Degree Checklist
  • Thesis & Dissertation Submission
  • Research Support
  • Graduate Student Registration Statuses

latex for master thesis

  • Cast & crew

A high-powered CEO puts her career and family on the line when she begins a torrid affair with her much younger intern. A high-powered CEO puts her career and family on the line when she begins a torrid affair with her much younger intern. A high-powered CEO puts her career and family on the line when she begins a torrid affair with her much younger intern.

  • Halina Reijn
  • Nicole Kidman
  • Harris Dickinson
  • Antonio Banderas

Nicole Kidman

  • Intern Rose

Maxwell Whittington-Cooper

  • Uber Driver

Alex Anagnostidis

  • All cast & crew
  • Production, box office & more at IMDbPro

More like this

Margo's Got Money Troubles

  • December 20, 2024 (United States)
  • United States
  • New York City, New York, USA (street scenes)
  • Man Up Film
  • See more company credits at IMDbPro

Technical specs

Related news, contribute to this page.

  • See more gaps
  • Learn more about contributing

More to explore

Recently viewed.

latex for master thesis

Templates — Thesis

Templates tagged Thesis

Show all Templates

Your thesis or dissertation is often the most important single piece of work you’ll produce as a student (whether it be your final year undergraduate research project or your complete Masters / PhD thesis). These templates, many provided by the university themselves as official layout guidelines, include sections for you to add all the relevant author information (your university, department, supervisor, year, etc) along with placeholder chapters for your introduction, background, method, results, conclusion / discussion, references and appendices.

MIT Thesis Template

Related Tags

Get in touch.

Have you checked our knowledge base ?

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

Email: 

IMAGES

  1. [Tex/LaTex] Help designing a Title Page for thesis

    latex for master thesis

  2. The PhD Thesis Latex Template for TRAIL, The Netherlands

    latex for master thesis

  3. latex thesis layout

    latex for master thesis

  4. Latex Presentation Template

    latex for master thesis

  5. best thesis latex template

    latex for master thesis

  6. How to Write a Thesis in LaTeX (Part 5): Customising Your Title Page

    latex for master thesis

VIDEO

  1. Latex Template for Thesis

  2. Latex Tutorial 6: REFERENCING Citation in Amharic አማርኛ

  3. Math Equations in LATEX|SowmyaSuku's Notions

  4. Research paper writing using LaTeX Overleaf

  5. Introduction for writing a Thesis documents using LaTeX *Full Tutorial*

  6. Sample Thesis in LaTeX (UMS)

COMMENTS

  1. 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 ...

  2. 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 ...

  3. Basic thesis template

    This Thesis LaTeX template is an ideal starting point for writing your PhD thesis, masters dissertation or final year project. The style is appropriate for most universities, and can be easily customised. This LaTeX template includes a title page, a declaration, an abstract, acknowledgements, table of contents, list of figures/tables, a ...

  4. LaTeX Templates

    Masters/Doctoral Thesis. This template provides a full framework for writing a graduate level thesis. It is carefully structured and separated into multiple parts for easy editing. Included are the following pages/sections: a cover page, declaration of authorship, quotation, abstract, acknowledgements, contents page (s), list of figures, list ...

  5. LaTeX templates for writing a thesis

    The thesis template site mostly just links to available external sites with templates. It provides links to ready-to-go thesis templates of various universities worldwide. There's even a google map for viewing the templates origins on the world map. Besides LaTeX templates there are also LyX thesis templates.

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

    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 ...

  7. The MIT thesis template in LaTeX

    The current MIT thesis template was developed in 2023, using up-to-date LaTeX coding, to meet the current formatting requirements of the MIT Libraries. The title and abstract pages are automatically laid out from information provided by the user. This template includes options to use a variety of fonts, and it is compatible with either pdfTeX ...

  8. Writing a thesis in LaTeX

    The following article summarizes the most important aspects of writing a thesis in LaTeX, providing you with a document skeleton (at the end) and lots of additional tips and tricks. Document class. The first choice in most cases will be the report document class: 1. \documentclass[options]{report} See here for a complete list of options.

  9. | A LaTeX template for thesis, dissertations and similar monograph-like

    The " novathesis " LaTeX template is an Open Source project for writing thesis, dissertations, and other monograph-like documents, which…. Is very easy to use for the LaTeX beginners: Just select the School, provide the cover info, your chapters with text… and you're done! Is flexible and adaptable for the LaTeX experts:

  10. Thesis Templates

    Current Students. Theses & Dissertations. Thesis Templates. The following thesis format templates should help you get started with formatting your thesis or dissertation. Georgia Tech provides free Overleaf Professional accounts for all students, faculty, and staff who would like to use the collaborative, online LaTeX editor for their projects.

  11. GitHub

    Enter Dissertate. Dissertate is a set of beautiful LaTeX templates for a thesis or dissertation. To date, the software provides everything needed to support the production and typesetting of a PhD dissertation at Harvard, Princeton, NYU, and UC Berkeley, though it will be adapted to meet the requirements of other schools — eventually all of them.

  12. LaTeX templates and instructions for theses, dissertations, and records

    Texas A&M's Thesis and Dissertation Services provides you with the resources you need to successfully navigate the thesis or dissertation process, from pre- submission to clearance for graduation. ... If you're new to Overleaf and LaTeX, help is available via their free introductory course and short tutorial video as well as on their FAQ and ...

  13. How to get started writing your thesis in LaTeX

    Here we provide a guide to getting started on writing your thesis in LaTeX, using a standard template which is pre-loaded into Overleaf. We have a large number of thesis templates in our online library, and you can upload your own if your university provides a set of LaTeX template files. We'll assume you've used LaTeX before and so are ...

  14. 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.

  15. LaTeX Templates

    This template uses the memoir document class to beautifully typeset a thesis. It is suitable for any high-level degree thesis such as for a PhD, Masters or Honors. The layout of the content is in a thin format to promote easy reading and the template features advanced specification of margins and trimming. The thesis boasts a professional look ...

  16. LaTeX template for Master, Bachelor, Diploma, and Student Theses

    LaTeX Template for Scientific Theses This template is a general template for scientific theses. Currently, it is the unofficial LaTeX template for Master, Bachelor, Diploma, and Student Theses.

  17. Style files (LaTeX) for theses at Penn Math

    Style files (LaTeX) for theses at Penn Math. Theses at Penn (masters and Ph.D.) must be submitted according to the official university guidelines. The following style files can serve as a guide in preparing masters or doctoral theses in the correct format. (You should still check the official university website listed above, to see other ...

  18. Master's Thesis Defense in Plastics Engineering: Akubueze Emmanuel

    07/23/2024 By Danielle Fretwell. The Francis College of Engineering, Department of Plastics Engineering, invites you to attend a Master's Thesis defense by Akubueze Emmanuel Uzoma on "High Performance Composites of Recycled Polypropylene and Polyethylene Reinforced with Waste Cellulosic Fibers and Fines."

  19. 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 ...

  20. Gallery

    Produce beautiful documents starting from our gallery of LaTeX templates for journals, conferences, theses, reports, CVs and much more. ... (whether it be your final year undergraduate research project or your complete Masters / PhD thesis). These templates, many provided by the university themselves as official layout guidelines, include ...

  21. Master's Thesis Defense in Mechanical Engineering: Kalima Bukenya 8/5

    The Francis College of Engineering, Department of Mechanical Engineering, invites you to attend a Master's Thesis defense by Kalima Bukenya on "Characterization and Modeling of Thermosets for Textiles." Candidate Name: Kalima Bukenya Degree: Master's Defense Date: Monday, Aug. 5, 2024 Time: 11 a.m. to 1 p.m. Location: Via Zoom.

  22. How to properly reference a thesis?

    0. You probably have \usepackage{ulem} somewhere in your preamble (i.e., at the start of your document). This redefines the \emph command (for emphasis, by default this is printed in italics) to underline. The bibliography uses emphasis, therefore the title becomes underlined. Underlines do not always correctly handle line breaks, in this case ...

  23. Master Graduation Information

    All students completing a thesis plan master's degree will be assigned a grade for thesis hours. Please contact your graduate program assistant to ensure that the final grade report process has been initiated by your department. Commencement Ceremony, Transcript, and Diploma Information.

  24. Babygirl (2024)

    Babygirl: Directed by Halina Reijn. With Nicole Kidman, Harris Dickinson, Antonio Banderas, Jean Reno. A high-powered CEO puts her career and family on the line when she begins a torrid affair with her much younger intern.

  25. Templates

    Master's Thesis Template for Faculty of Science and Technology at UniMi. This LaTeX template is tailored for Master's thesis documents within the Faculty of Science and Technology at the University of Milan (UniMi). It provides a structured format with customized chapter and section titles, adjustable line spacing, and integrated graphics ...