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.

Overleaf for LaTeX Theses & Dissertations: Home

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

Dissertations and Theses

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

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.

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

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

Link your ORCiD ID

Link your ORCiD account to your Overleaf account.

Add Institutional Library contact info here.

Contact Overleaf   or email [email protected]

See Overleaf news   on  our blog.

ShareLaTeX Joins Overleaf!

Read more about Overleaf and ShareLaTeX joining forces here

  • Next: Using Templates on Overleaf >>
  • Last Updated: Oct 6, 2022 1:00 PM
  • URL: https://guides.lib.virginia.edu/overleaf-dissertations
  • 434-924-3021
  • [email protected]
  • Ask a Librarian
  • UVA Shannon Library P.O. Box 400113 160 McCormick Road Charlottesville, VA 22904

About the Library

  • Staff Directory
  • Fellowships

Using the Library

  • Library Use Policies
  • Off-Grounds Access
  • ITS Computing Accounts
  • Accessibility Services
  • Emergency Information
  • UVA Privacy Policy
  • Tracking Opt-out

Other Sites

  • Cavalier Advantage
  • Library Staff Site

latex bibliography style phd thesis

LaTeX Resources for Graduate Students: Formatting of theses and dissertations

  • BibTeX reference format
  • BibTeX command
  • LaTeX bibliography file
  • LaTeX editors and compilers
  • Sample LaTeX file with bibliography
  • Sample LaTeX file without bibliography
  • Formatting of theses and dissertations

Formatting and structure

The Cornell Graduate School has become increasingly flexible about the formatting of theses and dissertations.  There now are only seven core requirements . For the structure of theses and dissertations here is a list of required and recommended sections .

Latex template

Among the available thesis and dissertation templates provided by the Graduate School is also a LaTeX template (ZIP archive). This template has been uploaded to Overleaf and placed in the Cornell template directory . This template contains a small fix to avoid an error message about \ifpdf .

  • << Previous: Sample LaTeX file without bibliography
  • Last Updated: Oct 25, 2022 5:12 PM
  • URL: https://guides.library.cornell.edu/latex
  • Basic remarks
  • Bitmap fonts
  • Page layout

Bibliography

  • Footnote citing

Tips on Writing a Thesis in LaTeX

latex bibliography style phd thesis

A typical scientific document contains a number of references, and this leads to the problem of organizing and presentation of the references in the document. The problem can be subdivided into several parts: store of the reference information, later retrieval of this information while preparing the document, and presentation (formatting) of the reference information in the document and in the bibliography according to a particular format.

A widely-used approach to deal with references in LaTeX documents is to employ BibTeX reference management software. In BibTeX reference information is stored in format-independent plain text file(s) (usually with .bib extension), which can be modified with almost any text editor. Such a text file contains BibTeX entries , and each entry, formed by several text lines, has

  • unique ID or key , needed to identify and refer to the particular entry, for instance Author2001 ;
  • entry type , which can be article , book , thesis , etc.;
  • entry fields (such as year , publisher , journal , etc.), corresponding to the particular type.

Here is an example of the article type entry from the .bib file I used while typesetting thesis:

The command \bibliography { reference_list } placed before \begin { document } is used to specify a plain text input file ( reference_list.bib here) containing information on references.

References can be "cited" during editing the LaTeX document using, for example, \cite { key } command, and later at the document compilation step LaTeX input files must be processed with LaTeX and BibTeX .

The most popular approaches to indicate a reference appearing in the text can be classified as "numeric" and "author–year". The former uses sequential number of a reference in the document

while "author–year" is based on the extended reference information and may appear like this:

Each indication has particular advantages and drawbacks. For example, numeric is more compact (i.e., require less space in a text line), and a group of references can be "compressed" into a range in the case they have sequential numbering (i.e., [1,2,3,5] will be shown as [1–3,5]). On the other hand, author–year indication shows more information on the cited document (typically, first one or two author names, and a year of a publication), but requires more space compared to the numeric one. The space consumed by reference may become important if your document has high density of references (and you care about in-line space "wasted" by references :).

In my thesis I have decided to use "numeric" indication, but contrary to the example above reference numbers appear in the text as a footnote: reference number by itself has script size ,

and each number has associated script-sized text at the bottom of the page (where the reference appeared) containing extended information on the cited reference:

This citation scheme improves in-line space saving compared to the plain numeric indication due to the reduced size of numbers, and at the same time allows the reader to see what exactly was cited without looking in the bibliography (which is typically located at the end of a document or chapter). The drawback of the footnote citation scheme follows from the space consumed at the bottom of the page: if there are too many citations on the page, footnote text will occupy a lot of space. For example:

To create citations in my thesis, I employed the biblatex package, which is one of the most notable packages I have used with LaTeX. The package provides a highly customizable interface for the creation and edit of the presentation of bibliographic data in the document. Compared to the plain BibTeX, biblatex enables relatively easy customization of the appearance of bibliographic data. Below I provide customizations I used to modify the default biblatex output. The detailed description of the biblatex commands is available in the package documentation .

The two basic commands to enable biblatex and output citation list are

While preparing the thesis I activated biblatex with the following options compiling the document using biblatex with the options below will need custom-numeric-comp.bbx and custom-numeric-comp.cbx files (see next sections, "Biblatex customization" and "Footnote citation") :

Option hyperref=true was specified to transform various citation elements (like citation number, page number where citation appears, hyperlink to the web page where cited document can be found, etc.) into clickable hyperlinks. This option requires hyperref package (see also notes on hyperref ).

With options url=false,isbn=false I disabled printing the URLs and ISBNs in the bibliography.

Back references

Option backref=true enables generation of the back references to the citation, which are usually number(s) of the page where citation appears:

The back reference text preceding the page number ("see p.") can be modified using the following command:

Just a note on the back references. When you are reading a .pdf document, encounter a reference, and click on it, .pdf viewer will change view to the record of this reference in the bibliography. Now, if you want to return to the main text and continue reading, you may find it difficult to do using back reference when the reference was cited on several pages (back reference will contain several page numbers and you have to bear in mind the original page number you came to the bibliography), and a good solution here is to use " Alt + ← " instead of the back reference itself. On the other hand, back references are useful to indicate how often and where a particular reference was cited in the document.

Citation style

Option style=custom-numeric-comp determines the citation style. As seen from its name, the chosen citation style uses numbers ( numeric ) to indicate citations in text, and consequent numbers are compressed ( comp ) into a range: [1,2,3,5] is printed as [1–3,5]. Above it was mentioned that I used footnote version of the standard biblatex numeric-comp style — as a result, each citation has i) its number typeset as superscript, and ii) short and extended reference information located at the bottom of the page ("footnote text") and in the bibliography, respectively:

Option citereset=chapter defines biblatex behavior for the reference footnote text in a typical situation when a citation appears several times in the document: footnote text for the particular citation is printed only once per document chapter ( citereset=chapter ), where chapter is defined according to the LaTeX sectioning commands . In my thesis a typical chapter includes about 20 pages, and I assumed citereset=chapter to be quite acceptable. However, one of my colleagues was confused by such a rule for printing the footnote text (i.e., he did not get the logic behind the rule until I have explained it). I was thinking about resetting footnote text as "once-per-page" (not "once-per-chapter") but decided to avoid this due to high density of the references in my thesis. If you are interested in such a behavior some useful information can be found here .

Number of displayed author names

Options maxcitenames=3 and maxbibnames=100 limit number of authors of the cited document to be printed in the document body and in the bibliography, respectively. If the number of authors exceeds maxcite(bib)names , the author list is truncated according to biblatex settings, and usually printed as "Author1 et al." In my case I have very short authors lists in the footnote text (document body) to reduce space occupied by footnote citations,

and virtually all authors are displayed in the bibliography:

I note that I have prepared my thesis with biblatex v. 0.9a (19.03.2010), while this on-line document was prepared and tested on biblatex v. 1.6 (29.07.2011). Options maxcitenames and maxbibnames were not available in v. 0.9a, and the described biblatex behavior (with maxcitenames=3 and maxbibnames=100 ) was obtained using maxnames=3 while loading the biblatex package, and maxnames=100 while printing the bibliography, i.e.

The next section continues the discussion of the biblatex customization.

  • Email & phone search

Department of Engineering

It services.

  • University of Cambridge
  • Department of Engineering
  • Computing Help

PhD/MPhil Thesis - a LaTeX Template

A new version of this, by Krishna Kumar, is available. Features include -

  • Conforms to the Student Registry PhD dissertation guidelines and CUED PhD guidelines
  • Supports LaTeX, XeLaTeX and LuaLaTeX
  • Adaptive Title Page: Title page adapts to title length
  • Title page with both College and University crests.
  • Print / On-line version: Different layout and hyper-referencing styles
  • Pre-defined and custom fonts (Times / Fourier / Latin Modern) with math support
  • Supports system fonts (XeLaTeX)
  • Pre-defined and custom bibliography style support (authoryear / numbered / custom)
  • Custom page styles: 3 Different Header / Footer styles
  • Pre-defined and custom margin size
  • A separate abstract with thesis title and author name, along with the titlepage can be generated by passing the argument abstract to the document class.
  • Option to generate only specific chapters and references without the frontmatter and title page. Useful for review and corrections.
  • Draft mode: Draft water mark, timestamp, version numbering and line numbering

July 2018: On CUED's central Linux system, you'll need to change Preamble/preamble.tex , commenting out the \usepackage{siunitx} ... line by putting a % symbol at the start of it. (some of our packages are too out of date)

Downloading

  • LaTeX Template - https://github.com/kks32/phd-thesis-template/releases/tag/phd-latex-template-latest-stable
  • LaTeX Template - https://github.com/kks32/phd-thesis-template/releases/latest
  • LyX Template - https://github.com/kks32/PhDThesisLyX/releases

Older versions are still available, but no longer supported.

  • © Cambridge University, Engineering Department, Trumpington Street, Cambridge CB2 1PZ, UK ( map ) Tel: +44 1223 332600, Fax: +44 1223 332662 Privacy policy Contact: helpdesk

Information Technology

LaTeX Your Thesis

General thesis tips, about the thesis template, changing headers, using and modifying sections, handling images and tables, landscape orientation, managing paragraph spacing, uploading the thesis template to overleaf, add a collaborator, managing your bibliography, choosing a bibliography style, how to cite a reed thesis, changing the title of your bibliography, fragment your thesis with \include, using labels and references, adding appendices, including full page pdfs.

  • Additional Resources - LaTeX Cheat Sheet
  • BACK UP YOUR THESIS. Often you will not realize for days or weeks that important paragraph or page is missing. Make recovery as easy as possible by keeping a dated backup of each writing session. Then copy those backups to at least two locations other than your hard drive: your home server, Gmail account, thumb drive, the options are wide and numerous. There is no excuse for not backing up the most important document of your Reed career.
  • Start your bibliographic database the day you start reading. Keep it up to date and annotate it, so you know where it came from (library, Summit, ILL, public library, professor), whether you've read it, and where you want to cite it. This will make the writing process less frustrating and creating the bibliography seamless.
  • Think of thesis formatting as a form of productive procrastination. Please don't put it off until the last week.
  • BACK UP. No, seriously. It's not "if" your hard drive fails, it's "when." Not to scare you or anything, but it's a good habit, like buckling your seat belt or not leaving your laptop unattended. You really don't want to wish you had taken that small precaution.
  • Keep the editable original of each graphic you want to include in your thesis in one folder. Later you may need to change a graphic quickly and having the editable original makes it easy. For graphs, keep the original Excel/JMP/Stata document, not a PDF. For photographs, keep a high resolution copy (such as a tiff). For drawings and illustrations, keep the original Illustrator document.
  • Use the timesaving benefits of LaTeX from the first day. Cross references can refer to tables, graphics, and chapters so you do not have to update references as your thesis changes. Use comments to make notes about what needs to added or changed.
  • Enjoy the experience! And get some sleep, food and relaxation on occasion. Hundreds of people did this before you; you can do this too.

The thesis template, available for download here , contains two main files of importance: Reedthesis.cls and Thesis.tex . (As you noticed, there are many other files in the folder. For more information about all the files LaTeX creates, see our article on the subject. ) Reedthesis.cls is a document class like article or book, and so must be defined in the preamble (see the section about document classes for more info ). Additionally, since the average installation (even Reed's) does not include Reedthesis.cls, you will have to bring the file wherever you want to work on your thesis.

The thesis template folder also contains bonus materials you may find helpful, such as an array of bibliography style files (.bst) that can support an undergraduate thesis citation and files already modified to work with a psychology major's specific needs. So make sure that you have the latest version of the thesis template and read through the thesis.tex file for more complete overview of the template's contents.

Common Queries

While the content of your thesis is certainly much more important than the appearance, a nicely typeset thesis will be more pleasant to look upon ten years from now. We have collected nearly every query for the last few years so you can make the changes you want and get back to revising your latest chapter. That typo on the first page will bug you even more than the headers once the thesis is bound and in the library. Most of these answers are links that lead to other pages in our LaTeX documentation because they fit well elsewhere and this page would be much too long if we decided to be redundant.

If you don't like how your headers appear, you can change them. That is, they are modifiable in LaTeX, but your adviser or the library might not like the change. But people change how they look all the time (usually to have the name of the chapter in small caps and without the title of the current \section), so the advanced LaTeX page has a few ways to go about tweaking the headers .

When using Reedthesis.cls, you will use \chapter{ optional title here } to denote the beginning of a new chapter (obviously) while \section{ title } and \subsection{ title } will subdivide those chapters. You do not need to use \subsection if you don't wish to, but \section will probably prove very useful to break up your chapters.

If you don't like the automatic numbering of \chapter, \section and \subsection, you can easily eliminate the numbering by adding an asterix to the command ( \chapter*{ title }, \section*{ title } , etc.), but then the section won't show up in the Table of Contents. To learn how to make sure these show up in the ToC, and to learn more about sectioning commands in general, check out the advanced LaTeX page .

In order to add an image in LaTeX, you must use the package graphicx and place the image ( \includegraphics{ imagename } ) inside the figure environment. Be sure to give a caption if necessary, but remember that LaTeX will add the "Figure x.x" to your caption on the typeset document. For more information on handling images, including the answers to our most common questions, see our graphics documentation . To make your life easier, I highly suggest that you read the section on using references and labels .

Like figures, tables also need to be in a float environment such as tabular or longtable . For an introduction to tables or to learn how to do more complex table formatting, see our documentation on tables . To learn how to change their position, numbering or presentation, the graphics documentation covers the same material. You may have to replace figure with table wherever appropriate, but the commands are basically the same. Feel free to stop by the CUS desk or try Google if you get lost!

When you have a table or figure that is too wide for your page, you will need to rotate your page to be in landscape rather than portrait orientation. To avoid rotating your headers and footers as well, use the package lscape (for more information on packages, see the advanced LaTeX section ) and enclose whatever needs to be rotated in the landscape environment:

\begin{landscape} \begin{figure}[htbp] \caption{A Really Wide Figure} \includegraphics{panoramicimage} \label{pan} \end{figure} \end{landscape}

This will keep the headers and page numbers in the portrait orientation, but rotate your figure or table as well as the appropriate caption. You do not want to use the package Portland ; this rotates the headers and footers as well, and the registrar will probably not accept such a setup.

The line breaking and spacing algorithms of LaTeX are not always successful. Sometimes the space between paragraphs is inconsistent from page to page, or even within the same page. If this happens to you, try ignoring it for a bit and continue to write your paper. Often the addition of a new subsection or just more words will be reorganized into a more pleasing arrangement.

But don't add unnecessary bulk to your thesis just to make it look good. Try putting this in the preamble: \setlength{\parskip}{0pt} . This sets the inter-paragraph spacing to 0 pts. You could also tell LaTeX that it can be more permissive when placing page breaks by putting \allowdisplaybreaks or \raggedbottom in the preamble. If none of these solutions work and you don't want to add more content to your finished chapter, bring your .tex file to the CUS desk and we shall see what we can do.

Using Overleaf

Overleaf is an online LaTeX editor that allows one to use LaTeX software without downloading or configuring. It has a variety of templates, but can also be used to make changes on our thesis template. 

  • Download the LaTeX template .zip file from the Thesis Templates section at downloads.reed.edu
  • Go to overleaf.com and create an account. We recommend using personal credentials so you don’t lose any data after graduation. Note: If you have a subscription through Reed you’ll have to use your Reed credentials instead

Image shows overleaf logo in upper left corner, below is a green button which says "New Project" with a dropdown menu offering "Blank project", "Example project", "Upload Project", and "Import from Github". "Upload Project" is highlighted in green

  • Select template .zip file from your computer and click Upload  if prompted.
  • Using the template is the same as with any LaTeX compiler  
  • Thesis edits should be made to thesis.tex, and a live version can be viewed by clicking Recompile . You can also upload your own .bib file to your project instead of using the example prelim.bib .

You can add your adviser as a collaborator so they may leave comments on your work as you go. Without a subscription you can have a single collaborator, with a student subscription you can have up to 6. If you are interested in joining our pilot subscription program, inquire by emailing [email protected] .

  • Open your project.

This is a screenshot from the upper right hand corner of a screen. There is a dark bar which has five options with an icon before each one. The options read: "Review", "Share", "Submit", "History", "chat". "Share" is highlighted.

Bibliographies

Unless you are doing a creative writing thesis, you will read way too much for your thesis. As a result, your bibliography will be ridiculously long. Thankfully, there is this great program called BibTeX that will typeset your bibliography for you. For more general information on using BibTeX to create your bibliography, as well as choosing a bibliography format and using a bibliography manager, see our BibTeX documentation .

While it is possible to create a bibliography manually , and there are reasons to do so, your senior year will be made a bit easier if you take advantage of BibTeX's automation . We strongly suggest that you use an application such as JabRef or BibDesk , both of which have documentation on the BibTex page. 

The BibTeX page has the following advice for creating your bibliography in BibTeX, but I thought it was worth repeating here:

  • Like with thesis formatting, the sooner you start compiling your bibliography for something as large as thesis, the better. Typing in source after source is mind-numbing enough; do you really want to do it for hours on end in late April? Think of it as procrastination.
  • When you have more than one author or editor, you need to separate each author's name by the word and .
  • The cite key (a citation's label) needs to be unique from the other entries.
  • Bibliographies made using BibTeX (whether manually or using a manager) accept LaTeX markup, so you can italicize and add symbols as necessary.
  • To force capitalization in an article title or where all lowercase is generally used, bracket the capital letter in curly braces.
  • You can add a Reed Thesis citation option. In fact, your bibliography style (.bst) may already have the option. See the thesis template for more details.

If you know what bibliography style you need to be using (Chicago or MLA, for example), then you should check out the available bibliography styles on the page about BibTeX styles . If your discipline varies with regard to preferred bibliography style, ask your adviser which format or journal you should use, then check out the BibTeX style page for a Reed edition, or CTAN.org for most other styles. 

A normal bibliography style (.bst) has formats for a PhD thesis and a Master's thesis, but no preset format for an undergraduate thesis. In your .bib file, use the Phd. thesis entry type, and in the optional type field, enter "Reed thesis" or "Undergraduate thesis" and that will be displayed instead of "Phd.thesis".

The default bibliography title is just "Bibliography," but if you want to change this, LaTeX gives you an easy way to do so. Here is an example of a bibliography renamed to "Works Cited." Note the placement after the command \backmatter and before the commands that make the bibliography ( \bibliographystyle and \bibliography ).

\backmatter \renewcommand{\bibname}{ Works Cited } \bibliographystyle{plain} \bibliography{thesis}

Special Topics In Thesis: Tricks to Make Life Easier

Thesis may be scary, but putting it together doesn't have to be. A number of recent alumni answered a call for recommendations to the next crop of seniors; here are the computer related gems.

Your thesis is big, or at least it will be soon enough. Instead of typing everything into the thesis template, you can have separate files for each chapter and then include them in the thesis template. To learn more about using the commands \include and \input , see the appropriate section in the advanced LaTeX documentation.

If you've made a table or figure, you have probably noticed the command \label{default} . If you want to refer to that table or figure elsewhere in your document, you need only to write \ref{default} and your typeset document will replace that ref with the number of the item. But you can refer to more than just tables and figures with ease:

  • For figures and tables, the label command should be inserted right after the \caption .
  • For equations or lists, the label command should be within the environment as a whole.
  • For chapters or sections, it will refer to the first preceding section title, whether it is a subsection, section, or chapter.
  • If you want the page number of the reference, use the \pageref{ marker } command. If you want just the reference, use the \ref{ marker } command. For correct spacing, you may wish to precede the reference commands with a tilde (~) if you are using the reference in a sentence or text.
  • You will need to typeset your document at least twice to see cross-references reflect any changes. You will know that you need to typeset again if you see question marks where there should be references.

To add an appendix to your thesis, find \appendix towards the end of your thesis template. Right after the \appendix , it should have another \chapter command, in which you can specify the name of your appendix. This is what the template has:

\appendix \chapter{The First Appendix} \chapter{The Second Appendix, For Fun}

You can either write directly in the template as if the appendix is just another chapter, or stick an external document in using \input (for .tex documents only, see the documentation on this ) or \includegraphics (for PDFs and other formats, see below). Your appendices will appear in the Table of Contents as Appendix A: Appendix Name (the second appendix will be Appendix B, and so on). The appendix itself will have both Appendix A and the appendix title on separate lines.

If you want to remove the "appendix" part of your appendix title or otherwise modify how that part of the title is displayed, remove \appendix from your thesis, thus making your appendices into normal chapters. You then need to keep the appendix from being numbered as "Chapter # ", so make the following modifications to your document:

Original: \appendix \chapter{The First Appendix} To make the appendix named Appendix: The First Appendix, change the above to: \chapter*{Appendix: The First Appendix} \addcontentsline{toc}{chapter}{Appendix: The First Appendix} \chaptermark{Appendix} \markboth{Appendix}{Appendix}

The \chapter* creates an unnumbered chapter and \addcontentsline adds the chapter to the Table of Contents with the title you specify. The commands \chaptermark and \markboth handle the headers. For more on modifying chapter names, look at the documentation on sectioning . To learn more about changing headers, read the Headers In a Thesis section.

Music Majors: There are two LaTeX related routes to typesetting music, MusicTeX and LilyPond. However, past music seniors have struggled to incorporate the files from both programs into their theses. The official CUS recommendation is to use Finale to typeset your music, then export the sheet music to PDF. (See this page to learn how to create pdfs in a program such as Finale.) Using \includepdf (with the package PDFPages ) is a great way to add them. PDFPages is a powerful and flexible way to include multi-page PDF files in your LaTeX document. Example: \includepdf[pages=1-8 offset=15 -15,scale=.80, frame=true,pagecommand={\thispagestyle{plain}}]{Orlando.pdf}

Additional Resources

For a quick LaTeX Cheat Sheet, please visit https://www.stdout.org/~winston/latex/ .

BibTeX phdthesis template

The phdthesis entry type is intended to be used for a PhD thesis.

Minimal template

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

Full template

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

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 Reference in Latex

    latex bibliography style phd thesis

  2. what is bibliography in latex

    latex bibliography style phd thesis

  3. Bibliography management in LaTeX

    latex bibliography style phd thesis

  4. Custom Essay Writing Service

    latex bibliography style phd thesis

  5. bibtex

    latex bibliography style phd thesis

  6. Bibliography in LaTex

    latex bibliography style phd thesis

VIDEO

  1. Bibliography

  2. Insert PDF document into Latex document

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

  4. Bibliography in LaTeX

  5. How to write a beautiful PhD thesis using latex, Part-I

  6. LaTeX bibliography for each chapter {tags: chapterbib, sectionbib, LaTeX, bibliography}

COMMENTS

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

    Now to actually get the bibliography printed in our thesis we use the \printbibliography command at the end of the document. By default the bibliography and citations use the numeric style which looks like this: To change the style we pass more arguments into the \usepackage command in square brackets. For example this specifies the alphabetic ...

  2. Make PhD citations say "dissertation" rather than thesis

    An examination of keystroke dynamics for continuous user authentication. PhD thesis, Queensland University of Technology, 2012. Is there any way to make it say "PhD dissertation" rather than "PhD thesis"? On another note, why is this the default in LaTeX? Would it be unusual or poor form to change it? Edit: I'm using the plain bibliography style.

  3. Bibtex bibliography styles

    Introduction and example. When using BiBTeX, the bibliography style is set and the bibliography file is imported with the following two commands: \bibliographystyle{ stylename } \bibliography{ bibfile } where bibfile is the name of the bibliography .bib file, without the extension, and stylename is one of values shown in the table below . Here ...

  4. Guide to BibTeX Type PhdThesis

    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.

  5. Guide to Writing Your Thesis in LaTeX: Bibliography

    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,

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

  7. PDF Using LaTeX to Write a PhD Thesis

    A PhD thesis can often contain theorems, lemmas, definitions etc. The LATEX kernel comes with the command: \newtheorem{ name }[ counter ]{ title }[ outer counter ]Definition. which can be used to create an environment called name that has an optional argument. Each instance of the environment starts with title .

  8. PDF How to Write a Doctoral Dissertation with LATEX

    and a \bibliography command to load the bibliography, in this case \bibliographyfdissg, at the point of your document where the bibliography should be inserted. The document at this point will look like this: \bibliographystyle{plain} \bibliography{diss} (3) Run LATEX on your main le, say foo.tex: latex foo. This generates an aux-

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

  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. Formatting of theses and dissertations

    Latex template Among the available thesis and dissertation templates provided by the Graduate School is also a LaTeX template (ZIP archive). This template has been uploaded to Overleaf and placed in the Cornell template directory .

  12. Bibliography using Biblatex

    The command \bibliography{reference_list} placed before \begin{document} is used to specify a plain text input file ( reference_list.bib here) containing information on references. References can be "cited" during editing the LaTeX document using, for example, \cite{key} command, and later at the document compilation step LaTeX input files must ...

  13. CUED

    PhD/MPhil Thesis - a LaTeX Template. A new version of this, by Krishna Kumar, is available. Features include -. Title page with both College and University crests. A separate abstract with thesis title and author name, along with the titlepage can be generated by passing the argument abstract to the document class.

  14. How to cite a diploma thesis with biblatex/biber?

    Define a new bibstring diplomathesis and give it a useful replacement text. diplomathesis = {diploma thesis}, author = {Dagobert Duck}, title = {Seashells as Currency after the Brexit}, type = {diplomathesis}, % mathesis and phdthesis work here. institution = {University of Ducktown}, year = {2019}, The known strings are.

  15. Bibliography Style Latex For Thesis Writing

    A Sample LaTex File with Citations In this simple LaTex document. five BibTex entries are cited. The bibliography style used is "plain". and the BibTex entries are from the database "Mybibtex". I'm quite new with LaTeX. but am trying to write my master's thesis with it. I'm running into a problem with the bibliography style.

  16. LaTeX Your Thesis

    How to Cite a Reed Thesis. A normal bibliography style (.bst) has formats for a PhD thesis and a Master's thesis, but no preset format for an undergraduate thesis. In your .bib file, use the Phd. thesis entry type, and in the optional type field, enter "Reed thesis" or "Undergraduate thesis" and that will be displayed instead of "Phd.thesis".

  17. BibTeX template: phdthesis

    BibTeX phdthesis template. The phdthesis entry type is intended to be used for a PhD thesis. Minimal template. Minimal template with required fields only for a BibTeX phdthesis entry.

  18. Referencing a Bachelor's Thesis

    It's not LaTeX per se but the bibliography style you use that determines, among many things, which types of bibliographic entries are recognized. If you're using a bibliography style such as plainnat, it's not much work at all to create a new entry type named, say, @bachelorsthesis.The following instructions should work not just for plainnat but for many other bibliography styles too, as long ...

  19. bibliographies

    You didn't include your Bibliotrial.bib file, but I'm guessing you're using the underline command there. The .bib file should only include the raw data for the bibliography; all of the stylistic choices should be made using the bibliography style file (apalike.bst in this case). So you should choose a different style that does what you want.

  20. Latex Bibliography Style PHD Thesis

    Latex Bibliography Style Phd Thesis - Free download as PDF File (.pdf), Text File (.txt) or read online for free. Scribd is the world's largest social reading and publishing site.

  21. Template for a Masters or Doctoral Thesis

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

  22. bibliographies

    Now follow these steps: Compile using (PDF)LaTeX which will produce thesis.bib as well as a .aux file. The .aux file is requesting a citation called mythesis, which doesn't exist anywhere (according to LaTeX, that is). Compile using BibTeX. This will produce a .bbl file based on your .aux and thesis.bib.