No Search Results

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

Part 1 | Part 2 | Part 3 | Part 4 | Part 5

Author: Josh Cassidy (August 2013)

This five-part series of articles uses a combination of video and textual descriptions to teach the basics of writing a thesis using LaTeX. These tutorials were first published on the original ShareLateX blog site during August 2013; consequently, today's editor interface (Overleaf) has changed considerably due to the development of ShareLaTeX and the subsequent merger of ShareLaTeX and Overleaf. However, much of the content is still relevant and teaches you some basic LaTeX—skills and expertise that will apply across all platforms.

In the previous post we looked at using images and tables in our thesis. In this post we are going to look at adding a bibliography to our thesis. To do this we are going to use the biblatex package . This involves creating a list of sources in a separate file called a .bib file.

The Bib File

When we create this file we need to choose a name for it and save it as a .bib file rather than a .tex file.

Thesis newbib.png

Now every time we need to reference a source we can cite it in the text and then fill in the source details in the .bib file. First we'll look at filling in our .bib file and then we'll move on to discussing citations. To add a new entry to our .bib file we need to first tell BibLaTeX what type of source we are referencing. We do this using an @ symbol followed immediately by the source type.

Then comes an opening curly bracket and a citation key of our choice followed by a comma. We then need to tell it all the details it wants for that particular type of source. We do this using a list of keywords each followed by an equals sign and the corresponding information in curly brackets. Items in the list are separated by commas. Each recognised source type has a list of required details which we must provide. But we'll often want to give more details. For example, for an article entry we need to use the author , title , journaltitle and year or date keywords. For an online source we need to use the author or editor , title , year or date and url keywords, and finally for a book it's the author , title and year or date keywords. Here's an example of what they might look like filled-in:

All of the information about the recognised source types and all the keywords you can use can be found in the biblatex documentation .

Now let's return to the main .tex file. To set it up for a bibliography we need to load up the biblatex package using the \usepackage command. Also in the preamble we need to specify which .bib files we want to use by calling the \addbibresource command and entering the file name in the curly brackets including the .bib extension.

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

Another one is the \parencite command which prints citations in parentheses except when using the numeric or alphabetic styles when it uses square brackets. There are more citation commands available to you which again can be found in the biblatex documentation .

The citation commands in biblatex also give us the option of adding a prenote and postnote in as arguments:

To add these notes in you uses two sets of square brackets in the citation command. If you only open one set of square brackets it will assume the contents of the brackets is a postnote , so if you only want a prenote make sure you still open the second set of square brackets and then just leave them empty. Here are some examples:

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:

Thesis numericcite.png

To change the style we pass more arguments into the \usepackage command in square brackets. For example this specifies the alphabetic style:

Which looks like this:

Thesis alphabeticcite.png

And this is the authoryear style:

Thesis authoryearcite.png

Another thing we can change here is the way the bibliography is ordered. For example this sorts entries by year , name , title :

While this doesn't sort them at all but displays them in the order they are cited.

More information about the numerous styles and sorting options available can be found in the biblatex documentation . This concludes our discussion on adding a bibliography. In the final post of this series we'll look at customising some of the opening pages.

All articles in this series

Overleaf guides

LaTeX Basics

Mathematics

Figures and tables

References and Citations

Document structure

Presentations

Field specific

Class files

Advanced TeX/LaTeX

Have you checked our knowledge base ?

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

Banner

Overleaf for Scholarly Writing & Publication: LaTeX Theses and Dissertations

LaTeX Theses and Dissertatons

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

Managing References

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

LaTeX on Wikibooks   has a  Bibliography Management  page.

Find list of BibTeX styles available on Overleaf   here

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

Collaborate with Overleaf

Collaboration tools

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

Collaborate online and offline with Overleaf and Git

Protected projects with Overleaf Pro

Getting Started with Your Thesis or Dissertation

How to get started writing your thesis in LaTeX

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

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

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

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

Five-Part LaTeX Thesis/Dissertation  Writing Guide

Part 1: Basic Structure   corresponding  video

Part 2: Page Layout   corresponding  video

Part 3: Figures, Subfigures and Tables   corresponding  video

Part 4: Bibliographies with Biblatex  corresponding  video

Part 5: Customizing Your Title Page and Abstract   corresponding  video

Link Your ORCID

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

Institutional Repository Manager

Profile Photo

Stack Exchange Network

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

TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It only takes a minute to sign up.

Q&A for work

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

Referencing a Bachelor's Thesis

LaTeX only offers @mastersthesis or @phdthesis , but no bachelor's thesis.

I tried to keep the entry as @misc , but the university name doesn't appear.

So I just used @mastersthesis and typed

Is there another way of doing this -- or could I create a new @bachelorthesis entry type in the .bst file?

chsk's user avatar

3 Answers 3

The simplest way to do so is to use @masterthesis and then setting the type to Bachelor's Thesis which will get printed instead of the default Master's Thesis . That is:

The new way to reference a Bachelor's Thesis is to use @thesis , which also replaces @phdthesis and @mastersthesis (both can still be used).

In type you can write whatever you want. But mathesis and phdthesis are predefined for Master's Thesis and PhD Thesis respectively.

CodingTil's user avatar

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 as they feature a function called mastersthesis .

Find the file plainnat.bst in your TeX distribution. Make a copy of this file and call it, say, myplainnat.bst . (Don't edit an original file of the TeX distribution directly.)

Open the file myplainnat.bst in your favorite text editor and locate the function called mastersthesis . (It starts on line 910 in my copy of the .bst file.)

Copy the code of the entire function (ca. 16 lines) and paste the copy below the existing function.

Change the new function's name from mastersthesis to bachelorsthesis .

Change the string "Master's thesis" to "Bachelor's thesis" .

Save the new .bst file either in the same directory as your main .tex file or somewhere in your TeX distribution's search path. If you choose the latter method, you will probably need to update the filename database in a way that's appropriate for your TeX distribution.

Start using the new bibliography style by invoking it via \bibliographystyle{myplainnat) , rerun LaTeX, BibTeX, and LaTeX twice more to fully update all references and citation call-outs, and start creating and citing those entries of type @bachelorsthesis . :-)

Happy (Bib)TeXing!

Mico's user avatar

Specifying the type of thesis within @mastersthesis

works for me when using \bibliographystyle{elsarticle-num}.

Petr's user avatar

Your Answer

Sign up or log in, post as a guest.

Required, but never shown

By clicking “Post Your Answer”, you agree to our terms of service , privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged bibtex bibliographies or ask your own question .

Hot Network Questions

latex cite a dissertation

Your privacy

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy .

Michigan State University

MSU Libraries

Introduction to BibTeX

Creating a bibtex file, adding a bibtex library to your document, using the biblatex package to cite, changing citation styles.

Using Citation Managers with LaTex

Although some people manage their citations in BibTex, a citation manager can still be extremely helpful for organizing and keeping track of your citations. Zotero, Mendeley, and EndNote all allow you to export citations to BibTex.

For help with choosing a citation manager see:

For instructions on how to export to BibTex from a citation manager see:

LaTex allows you to manage citations within your document through the use of a separate bibtex file ( filename.bib ). Bibtex files follow a standard syntax that allow you to easily reference the citations included in that file through the use of a bibliography management package. There are multiple bibliography management packages that you can use to manage citations. This guide will demonstrate how to use biblatex which allows for the most customization.

Example BibTeX file:

@article{grimberg,    author = {Grimberg, Bruna Irene and Hand, Brian},    title = {Cognitive Pathways: Analysis of students' written texts for science understanding},    journal = {International Journal of Science Education},    volume = {31},    number = {4},    pages = {503-521},    ISSN = {0950-0693},    DOI = {10.1080/09500690701704805},    url = {https://doi.org/10.1080/09500690701704805 https://www.tandfonline.com/doi/pdf/10.1080/09500690701704805?needAccess=true},    year = {2009},    type = {Journal Article} }

You can always create BibTeX files manually. However, many databases and citation managers allow you to export bibtex files that can then be uploaded into your LaTeX environment.

To add a bibtex file to your LaTex document, you can either create a new file in your Overleaf environment or upload a .bib file to the environment.

latex cite a dissertation

To start using the biblatex package to cite, we first need to add the package and establish the BibTex file we are using in the preamble of the document.

\usepackage[backend=biber, style=numeric, citestyle=authoryear]{biblatex}

\addbibresource{references.bib}

To create in text citation within your document, we can use the cite command ( \cite{citationkey} ) and include the citation key in the argument. The citation key can be found by looking up the first word included in the relevant citation within the BibTex file. These can always be updated by editing the BibTex file.

You can cite authors in line by using the cite command \cite{grimberg}.

We can then simply print the bibliography at the end of the document.

\printbibliography

Biblatex supports most common citation styles. To change the citation style in your document you have to edit the citestyle command of the biblatex package in the preamble.

\usepackage[backend=biber, style=numeric, citestyle=apa ]{biblatex}

You can also update the way the bibliography is sorted by adding a sorting command of the biblatex package.

\usepackage[backend=biber, style=numeric, citestyle=authoryear, sorting=nty ]{biblatex}

For more information on editing biblatex citation styles, see:

Michigan State University

University of Rhode Island

College of Engineering

Guide to Writing Your Thesis in LaTeX

The bibliography and list of references.

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

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

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

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

Generating the Bibliography and References

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

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

How to Add a Bibliography Entry

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

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

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

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

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

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

and a List of References entry that looks something like:

Types of List of References

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

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

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

Supported Bibliography Entry Types

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

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

Example .bib using this type:

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

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

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

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

Technical documentation is handled by the manual entry type.

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

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

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

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

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

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

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

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

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

The periodical entry type is used for journals and magazines.

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

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

Additional Comments

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

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

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

About the Bibliography Format

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

Home / Guides / Citation Guides / APA Format / How to Cite a Thesis or Dissertation in APA

How to Cite a Thesis or Dissertation in APA

In this citation guide, you will learn how to reference and cite an undergraduate thesis, master’s thesis, or doctoral dissertation. This guide will also review the differences between a thesis or dissertation that is published and one that has remained unpublished. The guidelines below come from the 7th edition of the Publication Manual of the American Psychological Association (2020a), pages 333 and 334. Please note that the association is not affiliated with this guide.

Alternatively, you can visit EasyBib.com for helpful citation tools to cite your thesis or dissertation .

Guide Overview

Citing an unpublished thesis or dissertation, citing a published dissertation or thesis from a database, citing a thesis or dissertation published online but not from a database, citing a thesis or dissertation: reference overview, what you need.

Since unpublished theses can usually only be sourced in print form from a university library, the correct citation structure includes the university name where the publisher element usually goes.

Author’s last name, F. M. (Year published). Title in sentence case [Unpublished degree type thesis or dissertation]. Name of institution.

Ames, J. H., & Doughty, L. H. (1911). The proposed plans for the Iowa State College athletic field including the design of a reinforced concrete grandstand and wall [Unpublished bachelor’s thesis]. Iowa State University.

In-text citation example:

If a thesis or dissertation has been published and is found on a database, then follow the structure below. It’s similar to the format for an unpublished dissertation/thesis, but with a few differences:

Author’s last name, F. M. (Year published). Title in sentence case (Publication or Document No.) [Degree type thesis or dissertation, Name of institution]. Database name.

Examples 1:

Knight, K. A. (2011). Media epidemics: Viral structures in literature and new media (Accession No. 2013420395) [Doctoral dissertation, University of California, Santa Barbara]. ProQuest Dissertations Publishing.

Example dissertation-thesis

Trotman, J.B. (2018). New insights into the biochemistry and cell biology of RNA recapping (Document No. osu1523896565730483) [Doctoral dissertation, Ohio State University]. OhioLINK Electronic Theses & Dissertations Center.

In the example given above, the dissertation is presented with a Document Number (Document No.). Sometimes called a database number or publication number, this is the identifier that is used by the database’s indexing system. If the database you are using provides you with such a number, then include it directly after the work’s title in parentheses.

If you are interested in learning more about how to handle works that were accessed via academic research databases, see Section 9.3 of the Publication Manual.

In-text citation examples :

Author’s last name, F. M. (Year Published). Title in sentence case [Degree type thesis or dissertation, Name of institution]. Name of archive or collection. URL

Kim, O. (2019). Soviet tableau: cinema and history under late socialism [Doctoral dissertation, University of Pittsburgh]. Institutional Repository at the University of Pittsburgh. https://d-scholarship.pitt.edu/37669/7/Olga%20Kim%20Final%20ETD.pdf

Stiles, T. W. (2001). Doing science: Teachers’ authentic experiences at the Lone Star Dinosaur Field Institute [Master’s thesis, Texas A&M University]. OAKTrust. https://hdl.handle.net/1969.1/ETD-TAMU-2001-THESIS-S745

It is important to note that not every thesis or dissertation published online will be associated with a specific archive or collection. If the work is published on a private website, provide only the URL as the source element.

In-text citation examples:

dissertation and thesis Citations for APA 7

We hope that the information provided here will serve as an effective guide for your research. If you’re looking for even more citation info, visit EasyBib.com for a comprehensive collection of educational materials covering multiple source types.

If you’re citing a variety of different sources, consider taking the EasyBib citation generator for a spin. It can help you cite easily and offers citation forms for several different kinds of sources.

To start things off, let’s take a look at the different types of literature that are classified under Chapter 10.6 of the Publication Manual :

You will need to know which type you are citing. You’ll also need to know if it is published or unpublished .

When you decide to cite a dissertation or thesis, you’ll need to look for the following information to use in your citation:

Since theses and dissertations are directly linked to educational degrees, it is necessary to list the name of the associated institution; i.e., the college, university, or school that is awarding the associated degree.

To get an idea of the proper form, take a look at the examples below. There are three outlined scenarios:

American Psychological Association. (2020a). Publication manual of the American Psychological Association (7th ed.). https://doi.org/10.1037/0000165-000

American Psychological Association. (2020b). Style-Grammar-Guidelines. https://apastyle.apa.org/style-grammar-guidelines/citations/basic-principles/parenthetical-versus-narrative

Published August 10, 2012. Updated March 24, 2020.

Written and edited by Michele Kirschenbaum and Elise Barbeau. Michele Kirschenbaum is a school library media specialist and the in-house librarian at EasyBib.com. Elise Barbeau is the Citation Specialist at Chegg. She has worked in digital marketing, libraries, and publishing.

APA Formatting Guide

APA Formatting

Citation Examples

How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

To cite a published thesis in APA style, it is important that you know some basic information such as the author, publication year, title of the thesis, institute name, archive name, and URL (uniform resource locator). The templates for an in-text citation and reference list entry of a thesis, along with examples, are given below:

In-text citation template and example:

Use the author surname and the publication year in the in-text citation.

Author Surname (Publication Year)

Cartmel (2007)

Parenthetical:

(Author Surname, Publication Year)

(Cartmel, 2007)

Reference list entry template and example:

The title of the thesis is set in sentence case and italicized. Enclose the thesis and the institute awarding the degree inside brackets following the publication year. Then add the name of the database followed by the URL.

Author Surname, F. M. (Publication Year). Title of the thesis [Master’s thesis, Institute Name]. Name of the Database. URL

Cartmel, J. (2007). Outside school hours care and schools [Master’s thesis, Queensland University of Technology]. EPrints. http://eprints.qut.edu.au/17810/1/Jennifer_Cartmel_Thesis.pdf

To cite an unpublished dissertation in APA style, it is important that you know some basic information such as the author, year, title of the dissertation, and institute name. The templates for in-text citation and reference list entry of an online thesis, along with examples, are given below:

Author Surname (Year)

Averill (2009)

(Author Surname, Year)

(Averill, 2009)

The title of the dissertation is set in sentence case and italicized. Enclose “Unpublished doctoral dissertation” inside brackets following the year. Then add the name of the institution awarding the degree.

Author Surname, F. M. (Publication Year). Title of the dissertation [Unpublished doctoral dissertation]. Name of the Institute.

Averill, R. (2009). Teacher–student relationships in diverse New Zealand year 10 mathematics classrooms: Teacher care [Unpublished doctoral dissertation]. Victoria University of Wellington.

APA Citation Examples

Writing Tools

Citation Generators

Other Citation Styles

Plagiarism Checker

Upload a paper to check for plagiarism against billions of sources and get advanced writing suggestions for clarity and style.

Get Started

UNSW Canberra logo

Citations & Referencing: LaTeX

LaTeX is a document preparation system that is ideal for those who want to produce a thesis of high typographical quality. It can also be used for other documents including assignments, project reports, and questionnaires. 

LaTeX is a document mark-up language. You just create a plain text file, in a text editor, with the extension .tex, and then produce an output file that converts your source text, combined with the markup language, into a high-quality document. No manual graphic designing or formatting is required. LaTeX is widely used by scientists, engineers and other academics because it makes it easy to typeset any complex mathematical formulae.

Below is an example of a simple LaTeX document in its plain text form and the final PDF output. 

latex cite a dissertation

To install LaTeX you will need:

What is TeX distribution?

The distribution contains the typesetting system as well as many packages that you may use when writing LaTeX documents. The LaTeX distribution is provided by the LaTeX Project and there are different distributions for different operating systems. TeXLive can be installed on most operating systems while others are system specific such as MiKTEX and proTEXt for Windows and MacTEX for MacOSX.

What is TeX editor?

A LaTeX distribution may or may not include an editor. You can choose an editor as you wish. At the very basic level you can use a simple text editor. But there are many good editors available for different Operating Systems and you can select one of them. They provide you with specific functionality such as code highlighting, macros, automatic document generation, auto completion...etc.

How can I obtain and install LateX?

LaTeX software is distributed through the Comprehensive T e X Archive Network ( CTAN ) servers. You can find many easily installable and usable TeX distributions on the CTAN website as well as important support documentation. Please also visit the LaTeX Project website for more information and instructions.

BibTeX generates and formats your bibliography in a LaTeX document.

LaTeX Includes features for you to easily cite references and create bibliographies in your document. The examples below show you  how to do this using a separate BibTeX file to store the details of your references. Your BibTeX file extension is .bib and it should contain all the references that you cite in your document. The .bib file is plain text and it can only be edited using Notepad or your LaTeX editor.

BibTeX example:

You should enter your references in the BibTeX file in the following format. Each reference starts with the document type.

@Book{<user-generated citation key>,

Citation key  is a unique identifier for a given reference. BibTeX scans your document for occurrences of a cite command with a citation key embedded in it, and translates it into a formatted reference. You can use anything you want as the citation key, but it is recommended that you choose something systematic that can easily differentiate between publications. Eg: First author's name and the year of publication.

Example .bib file

latex cite a dissertation

You can cite a reference in your .tex document by typing the below command where you want to cite a reference;

\cite{citationkey}

To include page numbers in your in text citation put it in square brackets before the citation key as shown below;

\cite[p. 28]{citationkey}

If you only want the references to appear in your bibliography without giving an in text citation, enter the following commands at the end of your text;

\nocite{citationkey} to appear only one citation from the .bib file

\nocite{*} to appear all the citations available in the .bib file

The below command is to cite multiple references within your text. You should include all the citation keys within the curly brackets separated by commas;

\cite{citation01,citation02,citation03}

Note: Go to Example .tex and Final PDF output to see where it is placed within the source text and how it appears in the final PDF output.

Using other reference management programs with BibTeX

RefWorks, EndNote, Mendeley, JabRef and many other reference management programs can export existing records to your BibTeX file in BibTeX format. With this facility you can get your references exported to your BibTeX file very easily without entering/editing them manually.

The steps below will assist you to export references from EndNote to BibTeX file:

latex cite a dissertation

   6. Click "Save" button and the EndNote will create the BibTeX file for you

latex cite a dissertation

The following commands will insert the bibliography in your .tex document.

\bibliographystyle{stylenamecite}

\bibliography{bibliography name}

APA example:

\bibliographystyle{apacite}

\bibliography{Bibliography}

See below example to see where it is placed within the source text.

latex cite a dissertation

UNSW theses templates

UNSW hosts a mirror of CTAN . The  UNSW theses templates  on CTAN website do almost all the formatting work for you. Please also visit  unswcover  page for more help

Wikibooks: LaTeX

Useful Documents

Talbot, N. L. C. 2013. Using LaTeX to write a PhD thesis: version 1.3

​​​​​​​ Videos

Need Help? - used on all subject guides - title is hidden via css

Ask Us a Question

Research Consultation

SMS your question to: 61437539020

Call us on: 0434 369 043

See our Citations and Referencing guide.

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.

LaTeX/Bibliography Management

For any academic/research writing, incorporating references into a document is an important task. Fortunately, LaTeX has a variety of features that make dealing with references much simpler, including built-in support for citing references. However, a much more powerful and flexible solution is achieved thanks to an auxiliary tool called BibTeX (which comes bundled as standard with LaTeX). Recently, BibTeX has been succeeded by BibLaTeX, a tool configurable within LaTeX syntax.

BibTeX provides for the storage of all references in an external, flat-file database. (BibLaTeX uses this same syntax.) This database can be referenced in any LaTeX document, and citations made to any record that is contained within the file. This is often more convenient than embedding them at the end of every document written; a centralized bibliography source can be linked to as many documents as desired (write once, read many!). Of course, bibliographies can be split over as many files as one wishes, so there can be a file containing sources concerning topic A ( a.bib ) and another concerning topic B ( b.bib ). When writing about topic AB, both of these files can be linked into the document (perhaps in addition to sources ab.bib specific to topic AB).

Embedded system [ edit | edit source ]

If you are writing only one or two documents and aren't planning on writing more on the same subject for a long time, you might not want to waste time creating a database of references you are never going to use. In this case you should consider using the basic and simple bibliography support that is embedded within LaTeX.

LaTeX provides an environment called thebibliography that you have to use where you want the bibliography; that usually means at the very end of your document, just before the \end{document} command. Here is a practical example:

OK, so what is going on here? The first thing to notice is the establishment of the environment. thebibliography is a keyword that tells LaTeX to recognize everything between the begin and end tags as data for the bibliography. The mandatory argument, which I supplied after the begin statement, is telling LaTeX how wide the item label will be when printed. Note however, that the number itself is not the parameter, but the number of digits is. Therefore, I am effectively telling LaTeX that I will only need reference labels of one character in length, which ultimately means no more than nine references in total. If you want more than nine, then input any two-digit number, such as '56', which allows up to 99 references.

Next is the actual reference entry itself. This is prefixed with the \bibitem{ cite_key } command. The cite_key should be a unique identifier for that particular reference, and is often some sort of mnemonic consisting of any sequence of letters, numbers and punctuation symbols (although not a comma). I often use the surname of the first author, followed by the last two digits of the year (hence lamport94 ). If that author has produced more than one reference for a given year, then I add letters after, 'a', 'b', etc. But, you should do whatever works for you. Everything after the key is the reference itself. You need to type it as you want it to be presented. I have put the different parts of the reference, such as author, title, etc., on different lines for readability. These linebreaks are ignored by LaTeX. The \textit{} command formats the title properly in italics.

Citations [ edit | edit source ]

To actually cite a given document is very easy. Go to the point where you want the citation to appear, and use the following: \cite{ cite_key } , where the cite_key is that of the bibitem you wish to cite. When LaTeX processes the document, the citation will be cross-referenced with the bibitems and replaced with the appropriate number citation. The advantage here, once again, is that LaTeX looks after the numbering for you. If it were totally manual, then adding or removing a reference would be a real chore, as you would have to re-number all the citations by hand.

Referring more specifically [ edit | edit source ]

If you want to refer to a certain page, figure or theorem in a text book, you can use the arguments to the \cite command:

The argument, "p. 215", will show up inside the same brackets. Note the tilde in [p.~215] , which replaces the end-of-sentence spacing with a non-breakable inter-word space. This non-breakable inter-word space is inserted because the end-of-sentence spacing would be too wide, and "p." should not be separated from the page number. The code \cite[215]{citation01} will produce the same result — in this case p.~ in front of the page number will be added automatically; but it will not be added for \cite[Cor.~2.5]{citation01} .

Multiple citations [ edit | edit source ]

When a sequence of multiple citations is needed, you should use a single \cite{} command. The citations are then separated by commas. Here's an example:

The result will then be shown as citations inside the same brackets, depending on the citation style.

Bibliography styles [ edit | edit source ]

There are several different ways to format lists of bibliographic references and the citations to them in the text. These are called citation styles , and consist of two parts: the format of the abbreviated citation (i.e. the marker that is inserted into the text to identify the entry in the list of references) and the format of the corresponding entry in the list of references, which includes full bibliographic details.

Abbreviated citations can be of two main types: numbered or textual. Numbered citations (also known as the Vancouver referencing system ) are numbered consecutively in order of appearance in the text, and consist in Arabic numerals in parentheses (1) , square brackets [1] , superscript 1 , or a combination thereof [1] . Textual citations (also known as the Harvard referencing system ) use the author surname and (usually) the year as the abbreviated form of the citation, which is normally fully (Smith 2013) or partially enclosed in parenthesis, as in Smith (2013) . The latter form allows the citation to be integrated in the sentence it supports.

Below you can see three of the styles available with LaTeX:

Here are some more often used styles:

However, keep in mind that you will need to use the natbib package to use most of these.

No cite [ edit | edit source ]

If you only want a reference to appear in the bibliography, but not where it is referenced in the main text, then the \nocite{} command can be used, for example:

A special version of the command, \nocite{*} , includes all entries from the database, whether they are referenced in the document or not.

Natbib [ edit | edit source ]

Using the standard LaTeX bibliography support, you will see that each reference is numbered and each citation corresponds to the numbers. The numeric style of citation is quite common in scientific writing. In other disciplines, the author-year style, e.g., (Roberts, 2003), such as Harvard is preferred. The natbib package is one possible way to get such an output. In fact, it can supersede LaTeX's own citation commands, as Natbib allows the user to easily switch between Harvard or numeric.

The first job is to add the following to your preamble in order to get LaTeX to use the Natbib package:

An example of useful options is:

Also, you need to change the bibliography style file to be used, so edit the appropriate line at the bottom of the file so that it reads: \bibliographystyle{plainnat} . Once done, it is basically a matter of altering the existing \cite commands to display the type of citation you want.

Customization [ edit | edit source ]

The main commands simply add a t for 'textual' or p for 'parenthesized', to the basic \cite command. You will also notice how Natbib by default will compress references with three or more authors to the more concise 1st surname et al version. By adding an asterisk (*), you can override this default and list all authors associated with that citation. There are some other specialized commands that Natbib supports, listed in the table here. Keep in mind that for instance abbrvnat does not support \citet* and will automatically choose between all authors and et al..

The final area that I wish to cover about Natbib is customizing its citation style. There is a command called \bibpunct that can be used to override the defaults and change certain settings. For example, I have put the following in the preamble:

The command requires six mandatory parameters.

Some of the options controlled by \bibpunct are also accessible by passing options to the natbib package when it is loaded. These options also allow some other aspect of the bibliography to be controlled, and can be seen in the table (right).

So as you can see, this package is quite flexible, especially as you can easily switch between different citation styles by changing a single parameter. Do have a look at the Natbib manual , it's a short document and you can learn even more about how to use it.

BibTeX [ edit | edit source ]

I have previously introduced the idea of embedding references at the end of the document, and then using the \cite command to cite them within the text. In this tutorial, I want to do a little better than this method, as it's not as flexible as it could be. I will concentrate on using BibTeX .

A BibTeX database is stored as a .bib file. It is a plain text file, and so can be viewed and edited easily. The structure of the file is also quite simple. An example of a BibTeX entry:

Each entry begins with the declaration of the reference type, in the form of @ type . BibTeX knows of practically all types you can think of, common ones are: book , article , and for papers presented at conferences, there is inproceedings . In this example, I have referred to an article within a journal.

After the type, you must have a left curly brace ' { ' to signify the beginning of the reference attributes. The first one follows immediately after the brace, which is the citation key , or the BibTeX key . This key must be unique for all entries in your bibliography. It is this identifier that you will use within your document to cross-reference it to this entry. It is up to you as to how you wish to label each reference, but there is a loose standard in which you use the author's surname, followed by the year of publication. This is the scheme that I use in this tutorial.

Next, it should be clear that what follows are the relevant fields and data for that particular reference. The field names on the left are BibTeX keywords . They are followed by an equals sign (=) where the value for that field is then placed. BibTeX expects you to explicitly label the beginning and end of each value. I personally use quotation marks ("), however, you also have the option of using curly braces ('{', '}'). But as you will soon see, curly braces have other roles, within attributes, so I prefer not to use them for this job as they can get more confusing. A notable exception is when you want to use characters with umlauts (ü, ö, etc), since their notation is in the format \"{o} , and the quotation mark will close the one opening the field, causing an error in the parsing of the reference. Using \usepackage[utf8]{inputenc} in the preamble to the .tex source file can get round this, as the accented characters can just be stored in the .bib file without any need for special markup. This allows a consistent format to be kept throughout the .bib file, avoiding the need to use braces when there are umlauts to consider.

Remember that each attribute must be followed by a comma to delimit one from another. You do not need to add a comma to the last attribute, since the closing brace will tell BibTeX that there are no more attributes for this entry, although you won't get an error if you do.

It can take a while to learn what the reference types are, and what fields each type has available (and which ones are required or optional, etc). So, look at this entry type reference and also this field reference for descriptions of all the fields. It may be worth bookmarking or printing these pages so that they are easily at hand when you need them. Much of the information contained therein is repeated in the following table for your convenience.

+ Required fields, o Optional fields *1 (Clarification needed) *2 (Clarification needed)

Authors [ edit | edit source ]

BibTeX can be quite clever with names of authors. It can accept names in forename surname or surname, forename . I personally use the former, but remember that the order you input them (or any data within an entry for that matter) is customizable and so you can get BibTeX to manipulate the input and then output it however you like. If you use the forename surname method, then you must be careful with a few special names, where there are compound surnames, for example "John von Neumann". In this form, BibTeX assumes that the last word is the surname, and everything before is the forename, plus any middle names. You must therefore manually tell BibTeX to keep the 'von' and 'Neumann' together. This is achieved easily using curly braces. So the final result would be "John {von Neumann}". This is easily avoided with the surname, forename , since you have a comma to separate the surname from the forename.

Secondly, there is the issue of how to tell BibTeX when a reference has more than one author. This is very simply done by putting the keyword and in between every author. As we can see from another example:

This book has three authors, and each is separated as described. Of course, when BibTeX processes and outputs this, there will only be an 'and' between the penultimate and last authors, but within the .bib file, it needs the and s so that it can keep track of the individual authors.

Standard templates [ edit | edit source ]

Standard templates that can be directly copied and filled in. Optional entries are marked in the core by a ? prefix. Note that the % sign used in LaTeX for commenting lines does not work in BibTeX and creates invalid field name. In BibTeX, valid but unknown field names and names outside of an entry are ignored, leading to a popular commenting method. <--Be careful if you copy the following templates, the % sign is not valid to comment out lines in bibtex files. If you want to comment out a line, you have to put it outside the entry.-->

Non-standard templates [ edit | edit source ]

Preserving case of letters [ edit | edit source ].

In the event that BibTeX has been set by the chosen style not to preserve all capitalization within titles, problems can occur, especially if you are referring to proper nouns, or acronyms. To tell BibTeX to keep them, use the good old curly braces around the letter in question, (or letters, if it's an acronym) and all will be well! It is even possible that lower-case letters may need to be preserved - for example if a chemical formula is used in a style that sets a title in all caps or small caps, or if "pH" is to be used in a style that capitalises all first letters.

However, avoid putting the whole title in curly braces, as it will look odd if a different capitalization format is used:

For convenience though, many people simply put double curly braces, which may help when writing scientific articles for different magazines, conferences with different BibTex styles that do sometimes keep and sometimes not keep the capital letters:

As an alternative, try other BibTex styles or modify the existing. The approach of putting only relevant text in curly brackets is the most feasible if using a template under the control of a publisher, such as for journal submissions. Using curly braces around single letters is also to be avoided if possible, as it may mess up the kerning, especially with biblatex, [1] so the first step should generally be to enclose single words in braces.

A few additional examples [ edit | edit source ]

Below you will find a few additional examples of bibliography entries. The first one covers the case of multiple authors in the Surname, Firstname format, and the second one deals with the incollection case.

If you have to cite a website you can use @misc, for example:

The note field comes in handy if you need to add unstructured information, for example that the corresponding issue of the journal has yet to appear:

Getting current LaTeX document to use your .bib file [ edit | edit source ]

At the end of your LaTeX file (that is, after the content, but before \end{document} ), you need to place the following commands:

Bibliography styles are files recognized by BibTeX that tell it how to format the information stored in the .bib file when processed for output. And so the first command listed above is declaring which style file to use. The style file in this instance is plain.bst (which comes as standard with BibTeX). You do not need to add the .bst extension when using this command, as it is assumed. Despite its name, the plain style does a pretty good job (look at the output of this tutorial to see what I mean).

The second command is the one that actually specifies the .bib file you wish to use. The ones I created for this tutorial were called sample1.bib , sample2.bib , . . ., samplen.bib , but once again, you don't include the file extension. At the moment, the .bib file is in the same directory as the LaTeX document too. However, if your .bib file was elsewhere (which makes sense if you intend to maintain a centralized database of references for all your research), you need to specify the path as well, e.g \bibliography{/some/where/sample} or \bibliography{../sample1} (if the .bib file is in the parent directory of the .tex document that calls it).

Now that LaTeX and BibTeX know where to look for the appropriate files, actually citing the references is fairly trivial. The \cite{ ref_key } is the command you need, making sure that the ref_key corresponds exactly to one of the entries in the .bib file. If you wish to cite more than one reference at the same time, do the following: \cite{ ref_key1 , ref_key2 , ..., ref_keyN } .

Why won't LaTeX generate any output? [ edit | edit source ]

The addition of BibTeX adds extra complexity for the processing of the source to the desired output. This is largely hidden from the user, but because of all the complexity of the referencing of citations from your source LaTeX file to the database entries in another file, you actually need multiple passes to accomplish the task. This means you have to run LaTeX a number of times. Each pass will perform a particular task until it has managed to resolve all the citation references. Here's what you need to type (into command line):

(Extensions are optional, if you put them note that the bibtex command takes the AUX file as input.)

After the first LaTeX run, you will see errors such as:

The next step is to run bibtex on that same LaTeX source (or more precisely the corresponding AUX file, however not on the actual .bib file) to then define all the references within that document. You should see output like the following:

The third step, which is invoking LaTeX for the second time will see more errors like " LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. ". Don't be alarmed, it's almost complete. As you can guess, all you have to do is follow its instructions, and run LaTeX for the third time, and the document will be output as expected, without further problems.

If you want a pdf output instead of a dvi output you can use pdflatex instead of latex as follows:

Note that if you are editing your source in vim and attempt to use command mode and the current file shortcut (%) to process the document like this:

You will get an error similar to this:

It appears that the file extension is included by default when the current file command (%) is executed. To process your document from within vim, you must explicitly name the file without the file extension for bibtex to work, as is shown below:

Another option exists if you are running Unix/Linux or any other platform where you have make . Then you can simply create a Makefile and use vim's make command or use make in shell. The Makefile would then look like this:

Including URLs in bibliography [ edit | edit source ]

As you can see, there is no field for URLs. One possibility is to include Internet addresses in howpublished field of @misc or note field of @techreport , @article , @book :

howpublished = "\url{http://www.example.com}"

Note the usage of \url command to ensure proper appearance of URLs .

Another way is to use special field url and make bibliography style recognise it.

url = "http://www.example.com"

You need to use \usepackage{url} in the first case or \usepackage{hyperref} in the second case.

Styles provided by Natbib (see below) handle this field, other styles can be modified using urlbst program. Modifications of three standard styles (plain, abbrv and alpha) are provided with urlbst.

If you need more help about URLs in bibliography, visit FAQ of UK List of TeX .

Customizing bibliography appearance [ edit | edit source ]

One of the main advantages of BibTeX, especially for people who write many research papers, is the ability to customize your bibliography to suit the requirements of a given publication. You will notice how different publications tend to have their own style of formatting references, to which authors must adhere if they want their manuscripts published. In fact, established journals and conference organizers often will have created their own bibliography style (.bst file) for those users of BibTeX, to do all the hard work for you.

It can achieve this because of the nature of the .bib database, where all the information about your references is stored in a structured format, but nothing about style. This is a common theme in LaTeX in general, where it tries as much as possible to keep content and presentation separate.

A bibliography style file ( .bst ) will tell LaTeX how to format each attribute, what order to put them in, what punctuation to use in between particular attributes etc. Unfortunately, creating such a style by hand is not a trivial task. Which is why Makebst (also known as custom-bib ) is the tool we need.

Makebst can be used to automatically generate a .bst file based on your needs. It is very simple, and actually asks you a series of questions about your preferences. Once complete, it will then output the appropriate style file for you to use.

It should be installed with the LaTeX distribution (otherwise, you can download it ) and it's very simple to initiate. At the command line, type:

LaTeX will find the relevant file and the questioning process will begin. You will have to answer quite a few (although, note that the default answers are pretty sensible), which means it would be impractical to go through an example in this tutorial. However, it is fairly straight-forward. And if you require further guidance, then there is a comprehensive manual available. I'd recommend experimenting with it and seeing what the results are when applied to a LaTeX document.

If you are using a custom built .bst file, it is important that LaTeX can find it! So, make sure it's in the same directory as the LaTeX source file, unless you are using one of the standard style files (such as plain or plainnat , that come bundled with LaTeX - these will be automatically found in the directories that they are installed. Also, make sure the name of the .bst file you want to use is reflected in the \bibliographystyle{style} command (but don't include the .bst extension!).

Localizing bibliography appearance [ edit | edit source ]

When writing documents in languages other than English, you may find it desirable to adapt the appearance of your bibliography to the document language. This concerns words such as editors , and , or in as well as a proper typographic layout. The babelbib package can be used here. For example, to layout the bibliography in German, add the following to the header:

Alternatively, you can layout each bibliography entry according to the language of the cited document:

The language of an entry is specified as an additional field in the BibTeX entry:

For babelbib to take effect, a bibliography style supported by it - one of babplain , babplai3 , babalpha , babunsrt , bababbrv , and bababbr3 - must be used:

Showing unused items [ edit | edit source ]

Usually LaTeX only displays the entries which are referred to with \cite . It's possible to make uncited entries visible:

Getting bibliographic data [ edit | edit source ]

Many online databases provide bibliographic data in BibTeX-Format, making it easy to build your own database. For example, Google Scholar offers the option to return properly formatted output, which can also be turned on in the settings page.

One should be alert to the fact that bibliographic databases are frequently the product of several generations of automatic processing, and so the resulting BibTex code is prone to a variety of minor errors, especially in older entries.

Helpful tools [ edit | edit source ]

latex cite a dissertation

Summary [ edit | edit source ]

Although it can take a little time to get to grips with BibTeX, in the long term, it's an efficient way to handle your references. It's not uncommon to find .bib files on websites that people compile as a list of their own publications, or a survey of relevant works within a given topic, etc. Or in those huge, online bibliography databases, you often find BibTeX versions of publications, so it's a quick cut-and-paste into your own .bib file, and then no more hassle!

Having all your references in one place can be a big advantage. And having them in a structured form, that allows customizable output is another one. There are a variety of free utilities that can load your .bib files, and allow you to view them in a more efficient manner, as well as sort them and check for errors.

Bibliography in the table of contents [ edit | edit source ]

If you are writing a book or report , you'll likely insert your bibliography using something like:

Or, if you are using BibTeX, your references will be saved in a .bib file, and your TeX document will include the bibliography by these commands:

Both of these examples will create a chapter-like (or section-like) output showing all your references. But even though the resulting “References” looks like a chapter or section, it will not be handled quite the same: it will not appear in the Table of Contents.

Using tocbibind [ edit | edit source ]

The most comfortable way of adding your bibliography to the table of contents is to use the dedicated package tocbibind that works with many standard document classes. Simply include this code in the preamble of your document:

This will include the Bibliography in the Table of Contents without numbering. If you want to have proper numbering, include the following code in the preamble:

The tocbibind package can also handle including the List of Figures, List of Tables and the Table of Contents itself in the Table of Contents. It has many options for numbering, document structure etc. to fit almost any scenario. See the tocbibind CTAN page for detailed documentation.

Other methods [ edit | edit source ]

As unnumbered item [ edit | edit source ].

If you want your bibliography to be in the table of contents, just add the following two lines just before the thebibliography environment:

(OR \addcontentsline { toc }{ section }{ Bibliography } if you're writing an article )

The first line just terminates the current paragraph and page. If you are writing a book , use \cleardoublepage to match the style used. The second line will add a line in the Table of Contents (first option, toc ), it will be like the ones created by chapters (second option, chapter ), and the third argument will be printed on the corresponding line in the Table of Contents; here Bibliography was chosen because it's the same text the thebibliography environment will automatically write when you use it, but you are free to write whatever you like. If you are using a separate bib file, add these lines between \bibliographystyle and \bibliography .

If you use hyperref package, you should also use the \phantomsection command to enable hyperlinking from the table of contents to bibliography.

This trick is particularly useful when you have to insert the bibliography in the Table of Contents, but it can work for anything. When LaTeX finds the code above, it will record the info as described and the current page number, inserting a new line in the Contents page.

As numbered item [ edit | edit source ]

If you instead want bibliography to be numbered section or chapter, you'll likely use this way:

Another even easier solution is to use \section inside of the \renewcommand block:

You may wish to use \renewcommand* { \refname }{ \vspace* { -1em }} followed by \vspace* { -1em } to counteract the extra space the blank \refname inserts.

If you are using BibTeX, the \bibliography command, and the book or report class, you will need to redefine \bibname instead of \refname like so.

biblatex [ edit | edit source ]

As we said before, biblatex is widely considered the successor of BibTeX. Intended as a full replacement for BibTeX, it is more configurable in its output and provides a multitude of new styles (for output) and fields (for the database) that can be used in a document. For now, refer to its comprehensive documentation on CTAN .

Entry and field types in .bib files [ edit | edit source ]

The following table shows most field types. Some field types are lists, either lists of person names , others are literal lists . A date can either be given in parts or full, some keys are necessary, page references are provided as ranges and certain special fields contain verbatim code. There are many kinds of titles .

Some entry types are hard to distinguish and are treated the same by standard styles:

Some field types are defined, but the documentation does not say which entry types they can be used with. This is either because they depend on another field being set to be useful or they can always be used in a user-defined manner, but will never be used in standard styles:

The only field that is always mandatory, is title . All entry types also require either date or year and they specify which of author and editor they expect or whether they can use both. Some field types can optionally be used with any entry type:

All physical (print) entry types share further optional field types:

Multimedia entry types

and legal entry types

are defined, but not yet supported (well).

The entry types @bibnote , @set and @xdata are special.

Printing bibliography [ edit | edit source ]

Presuming we have defined our references in a file called references.bib, we add this to biblatex by adding the following to the preamble:

Print the bibliography with this macro (usually at the end of the document body):

Printing separate bibliographies [ edit | edit source ]

We want to separate the bibliography into papers, books and others

If the bib entries are located in multiple files we can add them like this:

We can also filter on other fields, such as entrysubtype. If we define our online resources like this:

we filter with \printbibliography [title={Online resources}, subtype=inet]

Example with prefix keys, subheadings and table of contents [ edit | edit source ]

As the numbering of the bibliographies are independent, it can be useful to also separate the bibliographies using prefixnumbers such as a, b and c. In addition we add a main heading for the bibliographies and add that to the table of contents.

To make Hyperref links point to the correct bibliography section, we also add \phantomsection before printing each bibliography

To add each of the bibliographies to the table of contents as sub-sections to the main Bibliography, replace heading=subbibliography with heading=subbibintoc .

Multiple bibliographies [ edit | edit source ]

Using multibib [ edit | edit source ].

This package is for multiple Bibliographies for different sections in your work. For example, you can generate a bibliography for each chapter. You can find information about the package on CTAN [2]

Using bibtopic [ edit | edit source ]

The bibtopic-Package [3] is created to split the citations among more files, so that you can divide the bibliography into more parts. It generates a separate aux file for each bibliography section, so you will have to run bibtex on each of those (see the package documentation for more details).

Notes and references [ edit | edit source ]

This page uses material from Andy Roberts' Getting to grips with LaTeX with permission from the author.

latex cite a dissertation

Video: How to Typeset LaTex Document

This video shows you how to cite, create bibliography, and typeset LaTex file in TexStudio. Click the Full Screen button to enlarge the video.

The University of Saskatchewan's main campus is situated on  Treaty 6 Territory and the Homeland of the Métis.

© University of Saskatchewan Disclaimer | Privacy

RefME Logo

Bibtex Citation Generator

Powered by chegg.

Popular BibTeX generic citation style style Citation Examples

How to cite a book in bibtex generic citation style style.

Use the following template to cite a book using the BibTeX generic citation style citation style.

Reference List

Place this part in your bibliography or reference list at the end of your assignment.

In-text citation

Place this part right after the quote or reference to the source in your assignment.

How to cite a Journal in BibTeX generic citation style style

Use the following template to cite a journal using the BibTeX generic citation style citation style.

How to cite Film or Movie in BibTeX generic citation style style

Use the following template to cite a film or movie using the BibTeX generic citation style citation style.

How to cite an Online image or video in BibTeX generic citation style style

Use the following template to cite an online image or video using the BibTeX generic citation style citation style.

How to cite a Website in BibTeX generic citation style style

Use the following template to cite a website using the BibTeX generic citation style citation style.

Additional BibTeX generic citation style style Citation Examples

How to cite a blog in bibtex generic citation style style.

Use the following template to cite a blog using the BibTeX generic citation style citation style.

How to cite a Court case in BibTeX generic citation style style

Use the following template to cite a court case using the BibTeX generic citation style citation style.

How to cite a Dictionary entry in BibTeX generic citation style style

Use the following template to cite a dictionary entry using the BibTeX generic citation style citation style.

How to cite an E-book or PDF in BibTeX generic citation style style

Use the following template to cite an e-book or pdf using the BibTeX generic citation style citation style.

How to cite an Edited book in BibTeX generic citation style style

Use the following template to cite an edited book using the BibTeX generic citation style citation style.

How to cite an Email in BibTeX generic citation style style

Use the following template to cite an email using the BibTeX generic citation style citation style.

How to cite an Encyclopedia article in BibTeX generic citation style style

Use the following template to cite an encyclopedia article using the BibTeX generic citation style citation style.

How to cite an Interview in BibTeX generic citation style style

Use the following template to cite an interview using the BibTeX generic citation style citation style.

How to cite a Magazine in BibTeX generic citation style style

Use the following template to cite a magazine using the BibTeX generic citation style citation style.

How to cite a Newspaper in BibTeX generic citation style style

Use the following template to cite a newspaper using the BibTeX generic citation style citation style.

How to cite a Podcast in BibTeX generic citation style style

Use the following template to cite a podcast using the BibTeX generic citation style citation style.

How to cite a Song in BibTeX generic citation style style

Use the following template to cite a song using the BibTeX generic citation style citation style.

How to cite The Bible in BibTeX generic citation style style

Use the following template to cite The Bible using the BibTeX generic citation style citation style.

How to cite a TV Show in BibTeX generic citation style style

Use the following template to cite a TV Show using the BibTeX generic citation style citation style.

Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Q&A for work

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

Latex: Can I cite a reference after the bibliography

I'm having trouble with citations after the bibliography (in my appendices) using Bibtex/pdflatex. I'm using the 'puthesis' class - Purdue's class for our theses - which is built on top of the 'report' class. I'm using package 'natbib' with the option 'numbers'. An MWE isn't really feasible, but an example is shown below

Some obvious things:

Is there a way to cite references in latex after the bibliography?

ahagen's user avatar

This problem was caused by a non-UTF8/Latin9 encoded character in my .bib file. After ensuring the correct encoding with

the file compiled as expected.

Your Answer

Sign up or log in, post as a guest.

Required, but never shown

By clicking “Post Your Answer”, you agree to our terms of service , privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged latex pdflatex bibtex biblatex or ask your own question .

Hot Network Questions

latex cite a dissertation

Your privacy

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy .

IMAGES

  1. How to cite in LaTeX

    latex cite a dissertation

  2. Cite Figure Latex

    latex cite a dissertation

  3. bibtex

    latex cite a dissertation

  4. Download LaTeX for dissertation, publication, and presentation

    latex cite a dissertation

  5. Download LaTeX for dissertation, publication, and presentation

    latex cite a dissertation

  6. Latex workshop

    latex cite a dissertation

VIDEO

  1. SANTAN

  2. Latex: Thesis Writing: Explained in urdu

  3. How to write thesis in LaTeX P1

  4. #11

  5. Latex Thesis Report Template (BracU)

  6. LaTeX Article Preparation from Zero and Usage of Research Journal Templates

COMMENTS

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

    Change "PhD thesis" to "PhD dissertation" and then save the file. In your document, use \bibliographystyle {plain-diss} instead of {plain}. The same general solution will also work for the ieeetr.bst. A biblatex solution Another way to do this would be to use biblatex, which provides easy customization of these sorts of things.

  2. Bibliography management in LaTeX

    Bibliography management in LaTeX Contents 1 Introduction 2 Basic usage 3 The bibliography file 4 Customizing the bibliography 5 Adding the bibliography in the table of contents 6 Reference guide 7 Further reading Introduction When it comes to bibliography-management packages, there are three main options in LaTeX: bibtex, natbib and biblatex.

  3. Bibliographies with BibLaTeX

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

  4. LaTeX Theses and Dissertations

    LaTeX Theses and Dissertatons Tips and tools for writing your LaTeX thesis or dissertation in Overleaf, including templates, managing references, and getting started guides. Managing References BibTeX is a file format used for lists of references for LaTeX documents.

  5. Referencing a Bachelor's Thesis

    The new way to reference a Bachelor's Thesis is to use @thesis, which also replaces @phdthesis and @mastersthesis (both can still be used). @thesis {Oezoguz2012, ... type= {Bachelor's Thesis} ... In type you can write whatever you want. But mathesis and phdthesis are predefined for Master's Thesis and PhD Thesis respectively.

  6. Managing Citations in LaTeX

    LaTex allows you to manage citations within your document through the use of a separate bibtex file ( filename.bib ). Bibtex files follow a standard syntax that allow you to easily reference the citations included in that file through the use of a bibliography management package.

  7. r/LaTeX

    How to cite a published PhD dissertation in BibTex using @phdthesis? @phdthesis {phdthesis, author = {Person Name}, title = {Dissertation Title}, school = {University of Somewhere}, year = 2014, } I have the following entry. But when I cite it in my paper, I keep getting "Unpublished doctoral dissertation" showing up in the entry.

  8. Guide to Writing Your Thesis in LaTeX

    Guide to Writing Your Thesis in LaTeX The Bibliography and List of References The Graduate School requires a Bibliography which includes all the literature cited for the complete thesis or dissertation. Quoting from the Graduate School's Guidelines for the Format of Theses and Dissertations:

  9. How to Cite a Thesis or Dissertation in APA

    To cite an unpublished dissertation in APA style, it is important that you know some basic information such as the author, year, title of the dissertation, and institute name. The templates for in-text citation and reference list entry of an online thesis, along with examples, are given below: In-text citation template and example:

  10. LaTeX

    LaTeX is a document preparation system that is ideal for those who want to produce a thesis of high typographical quality. It can also be used for other documents including assignments, project reports, and questionnaires. ... LaTeX tutorial: How to cite references/paper/articles in LateX. 2011; Books. Latex for beginners by K.B.M. Nambudiripad ...

  11. 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. @phdthesis { citekey, author = "", title = "", school = "", year = "" } Download BibTeX file | Copy to clipboard Full template

  12. LaTeX/Bibliography Management

    To actually cite a given document is very easy. Go to the point where you want the citation to appear, and use the following: \cite{cite_key}, where the cite_key is that of the bibitem you wish to cite. When LaTeX processes the document, the citation will be cross-referenced with the bibitems and replaced with the appropriate number citation.

  13. BibTex and LaTex: Cite References in LaTex

    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". \documentclass{article} \begin{document} \title{About JabRef} \author{Author Name} \maketitle. JabRef is an open source reference management software for BibTex \cite ...

  14. Bibtex Citation Generator

    In-text citation Place this part right after the quote or reference to the source in your assignment. Template: 1_Author Surname_Year Published Example: E-mail is often seen as a transient form of communication, akin to the spoken word. Yet the document can be printed, kept and subsequently produced in court.

  15. Latex: Can I cite a reference after the bibliography

    Viewed 2k times. 1. I'm having trouble with citations after the bibliography (in my appendices) using Bibtex/pdflatex. I'm using the 'puthesis' class - Purdue's class for our theses - which is built on top of the 'report' class. I'm using package 'natbib' with the option 'numbers'. An MWE isn't really feasible, but an example is shown below.

  16. PDF How to Write a Doctoral Dissertation with LATEX

    How to Write a Doctoral Dissertation with LATEX A DISSERTATION ... Run LATEX on your main le, say foo.tex: latex foo. This generates an aux-iliary le foo.aux with a list of \cite references. 30 (4) Run BiBTEX on your le: bibtex foo. BiBTEX reads the auxiliary le, looks