Banner

Overleaf for Scholarly Writing & Publication: LaTeX Theses and Dissertations

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

LaTeX Theses and Dissertatons

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

Managing References

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

LaTeX on Wikibooks   has a  Bibliography Management  page.

Find list of BibTeX styles available on Overleaf   here

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

Collaborate with Overleaf

Collaboration tools

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

Collaborate online and offline with Overleaf and Git

Protected projects with Overleaf Pro

Getting Started with Your Thesis or Dissertation

How to get started writing your thesis in LaTeX

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

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

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

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

Five-Part LaTeX Thesis/Dissertation  Writing Guide

Part 1: Basic Structure   corresponding  video

Part 2: Page Layout   corresponding  video

Part 3: Figures, Subfigures and Tables   corresponding  video

Part 4: Bibliographies with Biblatex  corresponding  video

Part 5: Customizing Your Title Page and Abstract   corresponding  video

Link Your ORCID

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

Open Knowledge Librarian

Profile Photo

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

Banner

Overleaf for LaTeX Theses & Dissertations: Home

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

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

Managing References

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

LaTeX on Wikibooks has a Bibliography Management page.

Find list of BibTeX styles available on Overleaf here

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

Collaborate with Overleaf

Collaboration tools

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

How to get started writing your thesis in LaTeX

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

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

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

Add Institutional Library contact info here.

Contact Overleaf   or email [email protected]

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

5-part LaTeX Thesis Writing Guide

Part 1: Basic Structure corresponding  video

Part 2: Page Layout corresponding  video

Part 3: Figures, Subfigures and Tables   corresponding video

Part 4: Bibliographies with Biblatex corresponding video

Part 5: Customizing Your Title Page and Abstract corresponding video

ShareLaTeX Joins Overleaf!

Read more about Overleaf and ShareLaTeX joining forces here

Link your ORCiD ID

Link your ORCiD account to your Overleaf account.

See Overleaf news   on  our blog.

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

Using Citations in Overleaf with BibTeX

Citations are an important aspect of academic writing, as they allow authors to give credit to the sources they have used in their work. In this post, we will discuss how to use citations in Overleaf, a popular online LaTeX editor, with BibTeX, a tool for managing bibliographic references.

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

Adding a bibliography to your Overleaf project

The first step in using citations in Overleaf is to add a bibliography to your project. This can be done by creating a new file in your project and naming it references.bib . This file will contain all of the references that you wish to cite in your document. An alternative option is to use CiteDrive which connects to Overleaf and allows you to collaborate on your bibliography and citations. CiteDrive supports BibTeX natively and also Biblatex.

To add a reference to this file, you can use the following format:

@article{key, author = {Author, A.}, title = {Title}, journal = {Journal}, year = {Year}, }

The key is a unique identifier for the reference and will be used to cite it in your document. The author , title , journal , and year fields are required for a basic reference, but there are many other fields that can be included as well.

Citing references in your document

Once you have added your references to the references.bib file, you can cite them in your document using the cite command. For example, to cite the reference with the key key , you would use the following command:

This will insert the citation into your document in the format specified by the bibliography style you have chosen.

Formatting your bibliography

In order to format your bibliography, you need to specify a bibliography style. This can be done by including the following command in the preamble of your document:

\bibliographystyle{style}

Where style is the name of the bibliography style you wish to use. Some commonly used styles include plain , unsrt , and apalike .

Finally, you need to include the following command at the end of your document to generate the bibliography:

\bibliography{references}

Where references is the name of your bibliography file ( references.bib in our example).

In this post, we have discussed how to use citations in Overleaf with BibTeX. By following the steps outlined above, you can easily add references to your project, cite them in your document, and format your bibliography to meet the requirements of your academic institution or publisher. Additionally, the use of CiteDrive, which connects to Overleaf, allows for easy collaboration on your references and citations. CiteDrive natively supports both BibTeX and Biblatex making it a versatile option for managing your bibliographic references.

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

how to cite a thesis overleaf

Banner

Overleaf - LaTeX: Bibliographies and Citing

  • Getting Started
  • Creating a LaTeX Document in Overleaf
  • Structuring and Formatting
  • Lists, Tables, Images, and Labelling
  • Mathematics in LaTeX
  • Bibliographies and Citing
  • Books and Dissertations
  • Submitting from Overleaf

Bibliographies in LaTeX

In order to cite references, you first need to create a separate bibliography file ending with a .bib extension within your LaTeX project.  You can do that by clicking on the New File icon on the upper-left corner of the screen.

how to cite a thesis overleaf

Then, enter your file name. Note that the default file extension in LaTeX is .tex. Your bibliography file must end in .bib. Once you create your file, you can add references to it in the BibTeX format.

Exporting references from ProQuest RefWorks

If you use RefWorks to manage your references, you can export your references from RefWorks into the BibTeX format. To export your references from RefWorks, click on the Share  tab. Then, click on Export References  and select the BibTeX  option. You can import the references you exported from RefWorks into LaTeX as a .bib file.

To learn more about RefWorks, visit the  RefWorks e-course module .

Exporting references from a database or Google Scholar

The easiest way to add references to your .bib file, other than exporting them from RefWorks, is to import or copy them directly from Google Scholar or from a database. To cite from Google Scholar, click on the cite  icon underneath the article, which is represented with a quotation sign. Select the option BibTeX  at the bottom of the pop-up screen. You will be directed to another page where you can copy the reference in the BibTeX format. Make sure to check that the relevant fields are entered correctly before copying the reference into your .bib file.

Note that Google Scholar does not include a DOI, which is often needed as part of your reference.

Some databases also provide the option to export a reference in the BibTeX format. The way to export a reference from a database can vary depending on the database being used.

Note: Not all databases allow you to export citation information in the BibTeX format. To work around this, use RefWorks to manage your references which you can then export in the BibTeX format. 

Entering references manually

When entering a reference to BibTeX, the fields that are required to be filled in for each citation will vary depending on the type of the work you are citing. The reference type is specified by using the @ symbol followed by the type. Regardless of the reference type, the first field to be entered in the reference is the label that you want to give to a particular reference. You will later be able to use this label to cite the reference in the main text of the document.

Below is an example of the fields you are required to enter for articles.

Here's another example illustrating the fields required for a Ph.D. thesis.

Visit the page on standard templates for BibTeX to see how other types of works can be included.

Citing in LaTeX

To begin citing sources within your LaTeX document, you can use the biblatex  package. Add  \usepackage { biblatex } to your preamble. Note that there are other packages that you could use for this, including the natbib  package, which is also a popular option.

There are a number of specifications you can enter to the \usepackage { biblatex } command. The first specification you should add within the  square brackets of the command is backend = biber . Biber provides the relevant information needed to implement the biblatex package.

You can also specify the style of your bibliography by using the style  parameter. For instance, style=authoryear  will print your references in the author-year format. Another common variant is style=authoryear-comp , which will only print the author's last name once, and not for the subsequent references. Visit the page on biblatex's citation styles for a full list.

Using biblatex, you can also determine what criteria should be used to sort your bibliography by specifying the sorting  parameter. For instance, sorting=nyt  will sort your bibliography by name, title, and year. The end result of specifying these parameters may look something like this:

To be able to cite the references from your bibliography, you will need to implement a command mapping your BibTeX file to your document. To do that, you can use the \addbibresource {..} command and add your file name in between the curly brackets.

There are many options to call and format your in-text citations in LaTeX. Below is a list of common commands you can use with the corresponding output. For instance, the command \parencite {JonesandSmith1997} will result in (Jones and Smith 1997) in the pdf.   

\cite{..}

Jones and Smith 1997

\parencite{..}

(Jones and Smith 1997)

\textcite{..}

Jones and Smith (1997)

\citeauthor{..}

Jones and Smith

\parencite*{..} (1997)

Adding the \printbibliography command at the end of the document will instruct LaTeX to print your references.

  • << Previous: Mathematics in LaTeX
  • Next: Books and Dissertations >>
  • Last Updated: Mar 14, 2022 9:28 AM
  • URL: https://libguides.eur.nl/overleaf
  • My Library Accounts

Write & Cite: Overleaf & LaTeX

  • Write & Cite
  • Zotero & Citation Guide
  • LaTeX Workshop Syllabus
  • Copyright Support
  • Patents & Trademarks
  • Thesis Guide
  • Writing Guides

Overleaf & LaTeX

About overleaf.

how to cite a thesis overleaf

Caltech Library now provides free Overleaf Pro accounts for all students, faculty and staff who would like to use a collaborative, online LaTeX editor for their projects. Claim your free 10GB Pro account on Overleaf by signing up at https://www.overleaf.com/edu/caltech . You’ll need to verify a Caltech email address in order to receive your free Pro account.

Overleaf is designed to make the process of writing, editing and producing your research papers and project reports much quicker for both you and your collaborators. Overleaf can also be linked to other services such as arXiv, Git and Plot.ly to best fit into your workflow.

Some of the of features that Overleaf/WriteLaTeX includes:

  • Real-time collaboration in your browser for sharing and editing protected projects with authorized users. You can add and remove collaborators at any time.
  • Real-time preview of projects to review your document while editing and writing.
  • Immediate reporting of errors and warnings as you write, so you can catch issues early, and it shows them inline, so you don't have to find them in the LaTeX log.
  • Automatic typesetting of bibliographies within the Overleaf window: no need to separately compile bibliography (.bib) files.
  • Integrated, streamlined publishing allows you to publish immediately and directly to the journal of your choice with an integrated submission system to over a dozen publishing partners already, with more to come in 2016
  • Create 'Protected Projects' for added security. You can authorize selected users to have access and can add & remove collaborators at any time.
  • Quick Guide to LaTeX
  • Comprehensive LaTeX Symbol List

Caltech Thesis LaTeX template in Overleaf

As of January 2016, the Caltech Overleaf portal offers thesis authors a LaTeX template that reflects the regulations of the Office of Graduate Studies and the requirements of the Institute. There are two versions of the thesis template available: one with the approved Caltech logo; the other without a logo.

how to cite a thesis overleaf

Downloading Overleaf template files

You can download the Overleaf template files as zip files to your own computer if you prefer to use them that way. Open up a blank thesis template on the Overleaf site, then click on Project at the top of the screen. A green box labeled “Download as ZIP” will show up in the left column, and you can choose which types of files you want to download.

LaTeX Primers, Tutorials, and Guides

  • Overleaf Video Tutorials
  • Connect an Overleaf project with a Git repo
  • LaTeX WikiBook
  • LaTeX Packages (Comprehensive TeX Archive Network, CTAN)
  • Comprehensive LaTeX Symbol List (Scott Pakin, 2017) Over 14000 sym­bols are listed as a set of ta­bles. The ta­bles of sym­bols are or­dered in a log­i­cal way (the doc­u­ment be­gins with a ‘fre­quently re­quested sym­bols’ list), the aim be­ing to make the doc­u­ment a con­ve­nient way of look­ing up sym­bols.
  • The Not So Short Introduction to LaTeX 2E (Tobias Oetiker et al., , 2015)
  • A Quick Guide to LaTeX (tipsheet by Dave Richeson)
  • The TeX Live Guide - 2020

Quick Links

  • << Previous: Zotero & Citation Guide
  • Next: LaTeX Workshop Syllabus >>
  • Last Updated: Sep 28, 2022 2:27 PM
  • URL: https://library.caltech.edu/write
  • Jobs & Opportunities
  • Staff Directory
  • Mission Statement
  • Accessibility

No Search Results

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

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 adding a bibliography to our thesis using the biblatex package . In this, the final post of the series, we're going to look at customising some of the opening pages. In the first video we made a rather makeshift title page using the \maketitle command and by using an \includegraphics command in the \title command. Although this works, it doesn't give us as much flexibility as we may want.

The Title Page

A much better way to do this is to use the titlepage environment. We'll do this in a separate .tex file and then input it. The first thing we'll do is enclose everything in the title page within the center environment so it's all aligned to the centre. Next we need to instruct L a T e X to leave a gap between the top of the page and the first line of text. To do this we use the \vspace command followed by a length. We also need to add an asterisk into the command to make sure L a T e X doesn't decide to ignore the command. Next we'll add the thesis title in bold font using the \textbf command. To leave a gap between this and the next line of text we use the \vspace command again, this time without the asterisk. Next we'll add in a subtitle followed by some more vertical space and then the author name in bold font. This concludes what we want at the top of the title page—the rest of the content we'll add at the bottom of the title page.

To separate these two sections out we'll use the \vfill command which will automatically add in the amount of vertical space needed for the content to fill the page. Next we'll add in a line of text to specify what degree the thesis is being submitted for. The double backslash is used to create a new line. We'll then add more space before adding in the university logo specifying it's width as a fraction of the text width. Finally we'll add in some information about the university and the date.

Now in the main .tex file we can replace the \maketitle command with an input command linked to our new title page. If we now compile the code we can see all the items have been correctly processed:

Thesis smalltitle.png

However, the text is quite small so we'll go back and change the font sizes. To do this we'll use one of the simple font-sizing commands. There are ten of these to choose from, ranging from smallest to largest they are:

Let's make the title as big as it can be (using these simple commands) by choosing \Huge . We'll then make the subtitle two steps smaller using \large . When we use one of these commands they affect all the text in it's scope. Therefore in it's current state all the remaining text on the page will appear in the size of the subtitle. We'll keep it like this for the author name and degree title but we'll drop down one size for the university details and the date:

Thesis title.png

The abstract

We can also customise other pages, such as the abstract. Instead of using an unnumbered chapter, we'll create a new .tex file, customise the layout and then input it. At the top of this file we need to change the page style to plain in order to stop the headers being added in. Now in a similar way to the title page we'll add in some custom titles and then the abstract text.

This is what it will look like added in:

Thesis abstract.png

This concludes our series on writing a basic thesis. If you want to play around with the thesis we've created in this series you can open the project in Overleaf .

All articles in this series

  • Part 1: Basic Structure ;
  • Part 2: Page Layout ;
  • Part 3: Figures, Subfigures and Tables ;
  • Part 4: Bibliographies with BibLaTeX ;
  • Part 5: Customising Your Title Page and Abstract .
  • Documentation Home
  • Learn LaTeX in 30 minutes

Overleaf guides

  • Creating a document in Overleaf
  • Uploading a project
  • Copying a project
  • Creating a project from a template
  • Using the Overleaf project menu
  • Including images in Overleaf
  • Exporting your work from Overleaf
  • Working offline in Overleaf
  • Using Track Changes in Overleaf
  • Using bibliographies in Overleaf
  • Sharing your work with others
  • Using the History feature
  • Debugging Compilation timeout errors
  • How-to guides
  • Guide to Overleaf’s premium features

LaTeX Basics

  • Creating your first LaTeX document
  • Choosing a LaTeX Compiler
  • Paragraphs and new lines
  • Bold, italics and underlining

Mathematics

  • Mathematical expressions
  • Subscripts and superscripts
  • Brackets and Parentheses
  • Fractions and Binomials
  • Aligning equations
  • Spacing in math mode
  • Integrals, sums and limits
  • Display style in math mode
  • List of Greek letters and math symbols
  • Mathematical fonts
  • Using the Symbol Palette in Overleaf

Figures and tables

  • Inserting Images
  • Positioning Images and Tables
  • Lists of Tables and Figures
  • Drawing Diagrams Directly in LaTeX
  • TikZ package

References and Citations

  • Bibliography management with bibtex
  • Bibliography management with natbib
  • Bibliography management with biblatex
  • Bibtex bibliography styles
  • Natbib bibliography styles
  • Natbib citation styles
  • Biblatex bibliography styles
  • Biblatex citation styles
  • Multilingual typesetting on Overleaf using polyglossia and fontspec
  • Multilingual typesetting on Overleaf using babel and fontspec
  • International language support
  • Quotations and quotation marks

Document structure

  • Sections and chapters
  • Table of contents
  • Cross referencing sections, equations and floats
  • Nomenclatures
  • Management in a large project
  • Multi-file LaTeX projects
  • Lengths in L a T e X
  • Headers and footers
  • Page numbering
  • Paragraph formatting
  • Line breaks and blank spaces
  • Text alignment
  • Page size and margins
  • Single sided and double sided documents
  • Multiple columns
  • Code listing
  • Code Highlighting with minted
  • Using colours in LaTeX
  • Margin notes
  • Font sizes, families, and styles
  • Font typefaces
  • Supporting modern fonts with X Ǝ L a T e X

Presentations

  • Environments

Field specific

  • Theorems and proofs
  • Chemistry formulae
  • Feynman diagrams
  • Molecular orbital diagrams
  • Chess notation
  • Knitting patterns
  • CircuiTikz package
  • Pgfplots package
  • Typesetting exams in LaTeX
  • Attribute Value Matrices

Class files

  • Understanding packages and class files
  • List of packages and class files
  • Writing your own package
  • Writing your own class

Advanced TeX/LaTeX

  • In-depth technical articles on TeX/LaTeX

Buďte v kontaktu

Have you checked our knowledge base ?

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

Email: 

how to cite a thesis overleaf

Catalysis Science & Technology

New mononuclear cu( i ) compounds: synthesis, characterization, and application to the electroreduction of co 2 †.

ORCID logo

* Corresponding authors

a Facultad de Química, Universidad Nacional Autónoma de México, Circuito Interior, Ciudad Universitaria, Mexico City 04510, Mexico E-mail: [email protected]

This report includes the preparation of a new set of well-defined Cu( I ) catalytic precursors of the type [Cu(diphosphine)(PPh 3 )NO 3 ] and [Cu(diphosphine)NO 3 ], fully characterized by regular analytical methods, including single-crystal XRD (X-ray diffraction). The new compounds were assessed to activate CO 2 in an electrocatalytic process to yield oxalate selectively and with a relatively low overpotential. Some mechanistic insights into this process are also provided; oxalate is a valuable product for further chemical applications.

Graphical abstract: New mononuclear Cu(i) compounds: synthesis, characterization, and application to the electroreduction of CO2

Supplementary files

  • Supplementary information PDF (8413K)
  • Crystal structure data CIF (2491K)

Article information

how to cite a thesis overleaf

Download Citation

Permissions.

how to cite a thesis overleaf

New mononuclear Cu( I ) compounds: synthesis, characterization, and application to the electroreduction of CO 2

A. Arévalo, E. Juárez-Francisco, D. A. Roa, M. Flores-Alamo and J. J. García, Catal. Sci. Technol. , 2024, Advance Article , DOI: 10.1039/D4CY00759J

This article is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported Licence . You can use material from this article in other publications, without requesting further permission from the RSC, provided that the correct acknowledgement is given and it is not used for commercial purposes.

To request permission to reproduce material from this article in a commercial publication , please go to the Copyright Clearance Center request page .

If you are an author contributing to an RSC publication, you do not need to request permission provided correct acknowledgement is given.

If you are the author of this article, you do not need to request permission to reproduce figures and diagrams provided correct acknowledgement is given. If you want to reproduce the whole article in a third-party commercial publication (excluding your thesis/dissertation for which permission is not required) please go to the Copyright Clearance Center request page .

Read more about how to correctly acknowledge RSC content .

Social activity

Search articles by author.

This article has not yet been cited.

Advertisements

No Search Results

  • Biblatex citation styles
  • 1 Introduction and example
  • 2 Citation styles
  • 3 Further reading

Introduction and example

Biblatex provides numerous citation styles but if no citation style is set L a T e X uses the one that matches the bibliography style . Here is a minimal example showing use of the biblatex parameter style=alphabetic to set the citation style to alphabetic .

 Open this example in Overleaf (the sample.bib file is created for you).

This example produces the following output:

A biblatex example

Citation styles

Standard citation styles include:

  • numeric Implements a numeric citation scheme intended for in-text citations. Should be employed in conjunction with the numeric bibliography style .
  • numeric-comp Compact variant of the numeric mode. Citations like [1, 2, 3] are replaced by [1-3] .
  • numeric-verb Verbose variant of the numeric style. Instead of [2, 5, 7] will print [2];[5];[7] .
  • alphabetic Alphabetic citation scheme similar to the standard alpha in style bibtex . To be used in conjunction with the alphabetic bibliography style.
  • alphabetic-verb Verbose version of the alphabetic style. Instead of [Doe98, Doe95, Farn2004] will print [Doe98];[Doe95];[Farn2004] .
  • authoryear Implements the author-year citation scheme. To be used in conjunction with the author-year bibliography style.
  • authoryear-comp Compact variant of the authoryear style. Prints the author only once if subsequent references passed to a single citation command share the same author. Prints Doe 1992, 1995 instead of Doe 1992, Doe 1995 .
  • authoryear-ibid A variant of the authoryear intended for footnote citations. Replaces repeated citations by the abbreviation ibidem .
  • authoryear-icomp A style combining the features of authoryear-comp and authoryear-ibid
  • authortitle Implements the author-title scheme. Intended for citations given in footnotes.
  • authortitle-comp Compact variant of authortitle . Instead of Doe, First title; Doe, Second title this will print Doe, First title, Second title .
  • authortitle-ibid A variant of the authortitle intended for footnote citations. Replaces repeated citations by the abbreviation ibidem .
  • authortitle-icomp A style combining authortitle-comp and authortitle-ibid .
  • authortitle-terse Variant of authoritle that only prints the title if the bibliography contains more than one work of the respective author/editor.
  • authortitle-tcomp Style combining authortitle-terse and authortitle-comp .
  • authortitle-ticomp Style combining authortitle-icomp and authortitle-terse .
  • verbose Citation style that prints a full citation when the entry is cited for the first time and a short version afterwards.
  • reading Citation style that goes with the bibliography style by the same name. Loads the authortitle style.

There are other non-standard citation styles popular in different journals and thesis

  • American Chemical Society (ACS) style
  • American Institute of Physics (AIP) style
  • American Mathematical Society (AMS) style
  • Vancouver system
  • Institute of Electrical and Electronics Engineers (IEEE) style
  • Nature style
  • Science style
  • Chicago Style
  • Harvard referencing style
  • American Psychological Association (APA) style
Citation style stylename
ACS
AIP (*)
Nature
Science
IEEE
Chicago
MLA
APA

(*) this is a new style, see http://ctan.org/pkg/biblatex-phys

Further reading

For more information see

  • Bibliography management in LaTeX
  • Biblatex bibliography styles
  • Biblatex package documentation
  • Table of contents
  • Management in a large project
  • Documentation Home
  • Learn LaTeX in 30 minutes

Overleaf guides

  • Creating a document in Overleaf
  • Uploading a project
  • Copying a project
  • Creating a project from a template
  • Using the Overleaf project menu
  • Including images in Overleaf
  • Exporting your work from Overleaf
  • Working offline in Overleaf
  • Using Track Changes in Overleaf
  • Using bibliographies in Overleaf
  • Sharing your work with others
  • Using the History feature
  • Debugging Compilation timeout errors
  • How-to guides
  • Guide to Overleaf’s premium features

LaTeX Basics

  • Creating your first LaTeX document
  • Choosing a LaTeX Compiler
  • Paragraphs and new lines
  • Bold, italics and underlining

Mathematics

  • Mathematical expressions
  • Subscripts and superscripts
  • Brackets and Parentheses
  • Fractions and Binomials
  • Aligning equations
  • Spacing in math mode
  • Integrals, sums and limits
  • Display style in math mode
  • List of Greek letters and math symbols
  • Mathematical fonts
  • Using the Symbol Palette in Overleaf

Figures and tables

  • Inserting Images
  • Positioning Images and Tables
  • Lists of Tables and Figures
  • Drawing Diagrams Directly in LaTeX
  • TikZ package

References and Citations

  • Bibliography management with bibtex
  • Bibliography management with natbib
  • Bibliography management with biblatex
  • Bibtex bibliography styles
  • Natbib bibliography styles
  • Natbib citation styles
  • Multilingual typesetting on Overleaf using polyglossia and fontspec
  • Multilingual typesetting on Overleaf using babel and fontspec
  • International language support
  • Quotations and quotation marks

Document structure

  • Sections and chapters
  • Cross referencing sections, equations and floats
  • Nomenclatures
  • Multi-file LaTeX projects
  • Lengths in L a T e X
  • Headers and footers
  • Page numbering
  • Paragraph formatting
  • Line breaks and blank spaces
  • Text alignment
  • Page size and margins
  • Single sided and double sided documents
  • Multiple columns
  • Code listing
  • Code Highlighting with minted
  • Using colours in LaTeX
  • Margin notes
  • Font sizes, families, and styles
  • Font typefaces
  • Supporting modern fonts with X Ǝ L a T e X

Presentations

  • Environments

Field specific

  • Theorems and proofs
  • Chemistry formulae
  • Feynman diagrams
  • Molecular orbital diagrams
  • Chess notation
  • Knitting patterns
  • CircuiTikz package
  • Pgfplots package
  • Typesetting exams in LaTeX
  • Attribute Value Matrices

Class files

  • Understanding packages and class files
  • List of packages and class files
  • Writing your own package
  • Writing your own class

Advanced TeX/LaTeX

  • In-depth technical articles on TeX/LaTeX

Get in touch

Have you checked our knowledge base ?

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

Email: 

Stack Exchange Network

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

Q&A for work

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

How to cite a website?

It is a firm's website. So I don't know the author. And I don't know when it is published. Usually, a paper is cited like author (year), but how shall I deal with this? I am using \bibliographystyle{chicagoa} .

Thank you very much!

David Purton's user avatar

  • 2 Is it essential for you to use chicagoa style? This was last updated in 1992 (!) and supposedly supports the 13th edition of the CMOS. CMOS is now up to the 17th edition and life is much easier (unless this is to be submitted to a journal that specifies chicagoa ) if you use biblatex and biblatex-chicago style. –  David Purton Commented Nov 4, 2021 at 3:38

The CMOS website has this to say about citing websites in author-date style:

Website content It is often sufficient simply to describe web pages and other website content in the text (“As of May 1, 2017, Yale’s home page listed . . .”). If a more formal citation is needed, it may be styled like the examples below. For a source that does not list a date of publication or revision, use n.d. (for “no date”) in place of the year and include an access date. Reference list entries (in alphabetical order) Bouman, Katie. 2016. “How to Take a Picture of a Black Hole.” Filmed November 2016 at TEDxBeaconStreet, Brookline, MA. Video, 12:51. https://www.ted.com/talks/katie_bouman_what_does_a_black_hole_look_like . Google. 2017. “Privacy Policy.” Privacy & Terms. Last modified April 17, 2017. https://www.google.com/policies/privacy/ . Yale University. n.d. “About Yale: Yale Facts.” Accessed May 1, 2017. https://www.yale.edu/about-yale/yale-facts . In-text citations (Bouman 2016) (Google 2017) (Yale University, n.d.) For more examples, see 15.50–52 in The Chicago Manual of Style. For multimedia, including live performances, see 15.57.

If you want to use chicagoa.bst without any modifications, then you can do something like:

output from chicagoa

To my mind, this is a bit average on a number of levels and certainly doesn't match what CMOS wants.

Unless I absolutely had to, I would not use bibtex for Chicago style, and instead use biblatex with biber :

output with biblatex-chicago

  • That makes sense. I can use the phrase in that document to avoid a formal citation. Thanks a lot! –  Ypbor Commented Nov 5, 2021 at 0:51
  • Wouldn't it be better to have the link address in a hyperlinked, monospaced font? –  Apoorv Potnis Commented Jul 19, 2023 at 7:39
  • @ApoorvPotnis, the Chicago manual of style uses Roman font for URLs. Adding a hyperlink can be done using the hyperref package, but not directly relevant to the question –  David Purton Commented Jul 19, 2023 at 21:38

You must log in to answer this question.

Not the answer you're looking for browse other questions tagged citing ..

  • Featured on Meta
  • We've made changes to our Terms of Service & Privacy Policy - July 2024
  • Introducing an accessibility dashboard and some upcoming changes to display...

Hot Network Questions

  • How to filter only active layers in QgsMapLayerComboBox
  • Simplifing equation with complex coefficients
  • What is the first recorded usage of the three Rs: Reading, wRiting, and aRithmetic?
  • Can I continue using technology after it is patented
  • Is there a reason SpaceX does not spiral weld Starship rocket bodies?
  • If moral behaviour exists without free will, is it irrational to praise it?
  • What is the lowest feasible depth for lightly-armed-and-armored military submarines designed around the 1950s-60s?
  • Generating a mesh with fine elements around certain areas
  • MPs assuming office on the day of the election
  • How can electrons hop large distances if they are connected to the atom which is stationary in an lattice?
  • Tensor algebra and universal enveloping algebra
  • Refereeing papers by people you are very close to
  • Will lights plugged into cigarette lighter drain the battery to the point that the truck won't start?
  • She's a black belt in judo
  • Conservation of energy in a mechanical system with a discontinuous potential function
  • Why isn't the Liar's Paradox just accepted to be complete nonsense?
  • Operator-precedence calculator in C
  • I'm 78 and 57 years ago I was a 1 dan. Started karate at 5. I quit karate at 21 for reasons. Want to start again. Do not remember much. What do I do.?
  • Counting them 100 years later
  • Lightning protection for steel tower
  • Tips/strategies to managing my debt
  • Flashlight and 6 batteries
  • sed (or awk): print captured group or placeholder if it doesn't exist
  • Decimal expansion definition of real numbers, constructively

how to cite a thesis overleaf

COMMENTS

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

    The citation commands in biblatex also give us the option of adding a prenote and postnote in as arguments: a prenote is a word or phrase like "see" that is inserted at the start of the citation; a postnote is text you want inserted at the end of the citation. To add these notes in you uses two sets of square brackets in the citation command.

  2. Referencing a Bachelor's Thesis

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

  3. Bibliography management in LaTeX

    Here, the bibliography is divided in 4 sections. The syntax of the commands used here is explained below: \printbibliography[type=article,title={Articles only}] Only prints entries whose type is "article", and sets the title "Articles only" for this section. The same syntax works for any other entry type.

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

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

  5. LaTeX Theses and Dissertations

    Many citation management tools support the ability to export and import lists of references in .bib format. ... 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.

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

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

  7. Citing and Using References on Overleaf: A Guide for Researchers

    Step 3: In-Text citations. If you have the browser extension installed, you can create citations by selecting the text and clicking on the CiteDrive icon in your toolbar. You can also cite references manually using the cite command. For example, if you wanted to cite Smith (201X), you would use \cite{smith201X}.

  8. Using Citations in Overleaf with BibTeX

    An alternative option is to use CiteDrivewhich connects to Overleaf and allows you to collaborate on your bibliography and citations. CiteDrive supports BibTeX natively and also Biblatex. To add a reference to this file, you can use the following format: @article{key, author = {Author, A.}, title = {Title}, journal = {Journal}, year = {Year}, }

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

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

  10. Using bibliographies on Overleaf

    To create a new bibliography file in your Overleaf project, in the editor, click New File icon: An input box will appear for you to set the name of the new file. The file should have the .bib extension, in this example it is called mybibliography.bib. Now click on Create. A new file will be listed in the left panel, click it to edit its contents.

  11. Cite Master's Thesis using natbib

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

  12. References in LaTeX (Overleaf)

    In this lecture, you will learn how to start a chapter in LaTeX. You will also learn how to cite in LaTeX and how to use different bibliography formats and s...

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

    Review this video from Overleaf to help you get started writing your thesis in LaTeX, using a standard thesis template from the Overleaf Gallery. ... 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 ...

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

    Make a copy of this file and call it plain-diss.bst (or some other name). Save this in the same folder as your document, or put it in your local texmf folder in texmf/bibtex/bst/. Edit the file and search for "thesis". You will find the following function: FUNCTION {phdthesis} { output.bibitem.

  15. LibGuides: Overleaf

    In order to cite references, you first need to create a separate bibliography file ending with a .bib extension within your LaTeX project. You can do that by clicking on the New File icon on the upper-left corner of the screen. Then, enter your file name. Note that the default file extension in LaTeX is .tex. Your bibliography file must end in ...

  16. Bibliography management with bibtex

    Figure 1: Citing entries from a thebibliography list. Notice how each \bibitem is automatically numbered, and how \cite then inserts the corresponding numerical label. \begin{thebibliography} takes a numerical argument: the widest label expected in the list. In this example we only have two entries, so 9 is enough.

  17. Overleaf & LaTeX

    Some of the of features that Overleaf/WriteLaTeX includes: Real-time collaboration in your browser for sharing and editing protected projects with authorized users. You can add and remove collaborators at any time. Real-time preview of projects to review your document while editing and writing. Immediate reporting of errors and warnings as you ...

  18. citing

    bathesis An expression equivalent to the term 'Bachelor's thesis'. mathesis An expression equivalent to the term 'Master's thesis'. phdthesis The term 'PhD thesis', 'PhD dissertation', 'doctoral thesis', etc. candthesis An expression equivalent to the term 'Candidate thesis'. Used for 'Candidate' degrees that ...

  19. How to Write a Thesis in LaTeX (Part 5): Customising Your ...

    In the previous post we looked at adding a bibliography to our thesis using the biblatex package.In this, the final post of the series, we're going to look at customising some of the opening pages. In the first video we made a rather makeshift title page using the \maketitle command and by using an \includegraphics command in the \title command. Although this works, it doesn't give us as much ...

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

  21. Institute Name in @masterthesis Citations

    24. Use @master s thesis (with an s after master) instead of @masterthesis (which doesn't exist and probably defaults to some other type), then school will appear. The entry type @unpublished doesn't support school, so I'd suggest using note instead, as is recommended in the biblatex documentation:

  22. New mononuclear Cu(i) compounds: synthesis, characterization, and

    This report includes the preparation of a new set of well-defined Cu(I) catalytic precursors of the type [Cu(diphosphine)(PPh 3)NO 3] and [Cu(diphosphine)NO 3], fully characterized by regular analytical methods, including single-crystal XRD (X-ray diffraction).The new compounds were assessed to activate CO 2 in an electrocatalytic process to yield oxalate selectively and with a relatively low ...

  23. Biblatex citation styles

    Citation styles. Standard citation styles include: numeric Implements a numeric citation scheme intended for in-text citations. Should be employed in conjunction with the numeric bibliography style. numeric-comp Compact variant of the numeric mode. Citations like [1, 2, 3] are replaced by [1-3]. numeric-verb Verbose variant of the numeric style.

  24. citing

    The CMOS website has this to say about citing websites in author-date style: Website content. It is often sufficient simply to describe web pages and other website content in the text ("As of May 1, 2017, Yale's home page listed . . ."). If a more formal citation is needed, it may be styled like the examples below.