University of Rhode Island

  • Future Students
  • Parents and Families

College of Engineering

  • Research and Facilities
  • Departments

Guide to Writing Your Thesis in LaTeX

The bibliography and list of references.

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

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

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

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

Generating the Bibliography and References

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

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

How to Add a Bibliography Entry

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

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

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

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

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

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

and a List of References entry that looks something like:

Types of List of References

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

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

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

Supported Bibliography Entry Types

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

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

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

Example .bib using this type:

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

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

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

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

Technical documentation is handled by the manual entry type.

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

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

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

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

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

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

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

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

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

The periodical entry type is used for journals and magazines.

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

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

Additional Comments

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

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

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

About the Bibliography Format

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

Banner

Overleaf for 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

No Search Results

  • Bibtex bibliography styles
  • 1 Introduction and example
  • 2 Table of stylename values
  • 3 Further reading

Introduction and example

When using BiBTeX , the bibliography style is set and the bibliography file is imported with the following two commands:

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 is an example that you can open in Overleaf—the .bib file is created for you:

 Open in Overleaf (a suitable .bib file is generated)

Table of stylename values

Further reading.

For more information see:

  • Bibliography management with bibtex
  • BibTeX documentation at CTAN web site
  • tocbind package documentation
  • Bibliography management with natbib
  • Bibliography management with biblatex
  • Table of contents
  • Management in a large project
  • Multi-file LaTeX projects
  • 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

  • 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
  • Cross referencing sections, equations and floats
  • Nomenclatures
  • 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

Have you checked our knowledge base ?

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

Naval Postgraduate School

  • NPS Dudley Knox Library
  • Research Guides

Citation Guide

  • BibTeX Code
  • Examples & Rules
  • Zotero Examples
  • Examples & Rules
  • BibTeX Code ≤ v2.6
  • Other Styles
  • Generative AI

  NPS Thesis Template v2.7 (rel. 3 April 2023): Code Examples (Using template version ≤  2.6? Click here:  IEEE  or  INFORMS )

The following codes are customized for NPS theses and are not intended for use with any other publisher or template. The NPS thesis LaTeX template comes prepackaged with a BibTeX tool and a bib file containing the examples below.

  • << Previous: Zotero Examples
  • Next: BibTeX Code ≤ v2.6 >>
  • Last Updated: May 10, 2024 8:40 AM
  • URL: https://libguides.nps.edu/citation

bibtex for thesis

411 Dyer Rd. Bldg. 339 Monterey, CA 93943

Start Your Research

  • Academic Writing
  • Ask a Librarian
  • Copyright at NPS
  • Graduate Writing Center
  • How to Cite
  • Library Liaisons
  • Research Tools
  • Thesis Processing Office

Find & Download

  • Databases List
  • Articles, Books, & More
  • NPS Faculty Publications: Calhoun
  • Journal Titles
  • Course Reserves

Use the Library

  • My Accounts
  • Request Article or Book
  • Borrow, Renew, Return
  • Remote Access
  • Workshops & Tours
  • For Faculty & Researchers
  • For International Students
  • Print, Copy, Scan, Fax
  • Rooms & Study Spaces
  • Computers & Software
  • Adapters, Lockers & More

Collections

  • NPS Archive: Calhoun
  • Restricted Resources
  • Special Collections & Archives
  • Federal Depository
  • Homeland Security Digital Library
  • Library Staff
  • Special Exhibits
  • Our Affiliates

NPS-Licensed Resources - Terms & Conditions

Copyright Notice

Federal Depository Library

Naval Postgraduate School 1 University Circle, Monterey, CA 93943 Driving Directions | Campus Map

This is an official U.S. Navy Website |  Please read our Privacy Policy Notice  |  FOIA  |  Section 508  |  No FEAR Act  |  Whistleblower Protection  |  Copyright and Accessibility  |  Contact Webmaster

  • Plagiarism and grammar
  • Citation guides

Cite a Thesis in BIBTEX

- powered by chegg.

Worldcat logo

Check your paper before your teacher does!

Avoid plagiarism — quickly check for missing citations and check for writing mistakes., is your source credible don’t forget to consider these factors., purpose : reason the source exists.

  • Is the point of the information to inform, persuade, teach, or sell?
  • Do the authors/publishers make their intentions clear?
  • Does the information appear to be fact or opinion?
  • Does the point of view seem impartial? Do they identify counter-arguments?

Authority - Author: Source of the information

  • Who is the author? What are their credentials or qualifications?
  • What makes the author qualified to write on this topic?
  • Is there clearly defined contact information for the author?

Authority - Publisher: Source of the information

  • Who is the publisher? Is it a non-profit, government agency, or organization? How might this affect their point of view?
  • What makes the publisher qualified to generate works on this subject?
  • What can the URL tell you about the publisher? For instance, .gov may signify that it is a government agency.

Relevance : Importance of the information to your topic

Currency : timeliness of the information.

  • When was the information published? When was it last updated? Does it reflect the most current information available?
  • How does your topic fit in with this source’s publication date? Do you need current information to make your point or do older sources work better?

Comprehensiveness

  • Does the source present one or multiple viewpoints on your topic?
  • Does the source present a large amount of information on the topic? Or is it short and focused?
  • Are there any points you feel may have been left out, on purpose or accidentally, that affect its comprehensiveness?
  • Citation Guides
  • Chicago Style
  • Terms of Use
  • Global Privacy Policy
  • Cookie Notice
  • DO NOT SELL MY INFO

logo

  • Register Forgot password

BibTeX Style Examples

Next: drawing in latex with tikz.

bibtex for thesis

  • Plagiarism and grammar
  • Citation guides

Cite a Thesis in BIBTEX

Worldcat logo

Don't let plagiarism errors spoil your paper

Consider your source's credibility. ask these questions:, contributor/author.

  • Has the author written several articles on the topic, and do they have the credentials to be an expert in their field?
  • Can you contact them? Do they have social media profiles?
  • Have other credible individuals referenced this source or author?
  • Book: What have reviews said about it?
  • What do you know about the publisher/sponsor? Are they well-respected?
  • Do they take responsibility for the content? Are they selective about what they publish?
  • Take a look at their other content. Do these other articles generally appear credible?
  • Does the author or the organization have a bias? Does bias make sense in relation to your argument?
  • Is the purpose of the content to inform, entertain, or to spread an agenda? Is there commercial intent?
  • Are there ads?
  • When was the source published or updated? Is there a date shown?
  • Does the publication date make sense in relation to the information presented to your argument?
  • Does the source even have a date?
  • Was it reproduced? If so, from where?
  • If it was reproduced, was it done so with permission? Copyright/disclaimer included?
  • Citation Machine® Plus
  • Citation Guides
  • Chicago Style
  • Harvard Referencing
  • Terms of Use
  • Global Privacy Policy
  • Cookie Notice
  • DO NOT SELL MY INFO

RefME Logo

Bibtex Citation Generator

Powered by chegg.

  • Select style:
  • Archive material
  • Chapter of an edited book
  • Conference proceedings
  • Dictionary entry
  • Dissertation
  • DVD, video, or film
  • E-book or PDF
  • Edited book
  • Encyclopedia article
  • Government publication
  • Music or recording
  • Online image or video
  • Presentation
  • Press release
  • Religious text

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.

The 14 BibTeX entry types

Possibly the most difficult aspect of using BibTeX to manage bibliographies is deciding what entry type to use for a reference source. We list all the 14 BibTeX entry types including their description on when to use.

An article from a journal, magazine, newspaper, or periodical.

BibTeX example: article citation style abbrv

A book where the publisher is clearly identifiable.

BibTeX example: book citation style abbrv

A printed work that is bound, but does not have a clearly identifiable publisher or supporting institution.

BibTeX example: booklet citation style abbrv

An article that has been included in conference proceedings. See inproceedings for details.

A section, such as a chapter, or a page range within a book.

BibTeX example: inbook citation style abbrv

  • incollection

A titled section of a book. Such as a short story within the larger collection of short stories that make up the book.

BibTeX example: incollection citation style abbrv

  • inproceedings

A paper that has been published in conference proceedings. The usage of conference and inproceedings is the same. The conference entry was included for Scribe compatibility.

BibTeX example: inproceedings citation style abbrv

A technical manual for a machine software such as would come with a purchase to explain operation to the new owner.

BibTeX example: manual citation style abbrv

  • mastersthesis

A thesis written for the Master’s level degree.

BibTeX example: mastersthesis citation style abbrv

Used if none of the other entry types quite match the source. Frequently used to cite web pages, but can be anything from lecture slides to personal notes.

BibTeX example: misc citation style abbrv

A thesis written for the PhD level degree.

BibTeX example: phdthesis citation style abbrv

  • proceedings

A conference proceeding.

BibTeX example: proceedings citation style abbrv

An institutionally published report such as a report from a school, a government organization, an organization, or a company. This entry type is also frequently used for white papers and working papers.

BibTeX example: techreport citation style abbrv

  • unpublished

A document that has not been officially published such as a paper draft or manuscript in preparation.

BibTeX example: unpublished citation style abbrv

bibtex for thesis

Energy & Environmental Science

Synergistic effect of a berlin green framework for highly efficient moisture-electric energy transformation †.

ORCID logo

* Corresponding authors

a Department of Chemical Engineering, Pohang University of Science and Technology (POSTECH), 77 Cheongam-Ro, Pohang, Gyeongbuk, Republic of Korea E-mail: [email protected]

We developed a novel moisture-induced power generator (MPG) by utilizing Berlin green (BG) as an active material to enhance its moisture-electric energy transformation (MEET) performance. The bilayer-based MPG device was fabricated by stacking a BG/graphene oxide/cellulose nanofiber (BGC) composite layer on a NaCl/cellulose nanofiber (NC) composite layer. Moisture adsorption onto the NC layer triggered the dissociation and spontaneous diffusion of the sodium ions toward the BGC layer due to the ion concentration gradient. The adsorption of positive sodium ions onto the BGC layer induced electron transfer from the counter electrode through the external wire, generating electricity. Furthermore, the insertion of sodium ions into the BG framework reduced BG to Prussian blue, generating additional electricity. This synergistic interplay of physical and electrochemical processes resulted in excellent MEET performance: 1.17 V and 2770 μA cm −2 at 90% relative humidity. These values are two and ten times higher than those of the bilayer MPG without BG, respectively. In particular, the current density of BGC–NC is the highest value that has been reported to date.

Graphical abstract: Synergistic effect of a Berlin green framework for highly efficient moisture-electric energy transformation

Supplementary files

  • Supplementary information PDF (1169K)

Article information

bibtex for thesis

Download Citation

Permissions.

bibtex for thesis

Synergistic effect of a Berlin green framework for highly efficient moisture-electric energy transformation

M. Song, D. Kim, H. Lee, H. Han and S. Jeon, Energy Environ. Sci. , 2024, Advance Article , DOI: 10.1039/D4EE00777H

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

Help | Advanced Search

Astrophysics > Cosmology and Nongalactic Astrophysics

Title: development of realistic simulations for the polarization of the cosmic microwave background.

Abstract: Polarization of the cosmic microwave background (CMB) can help probe cosmic inflation (via primordial $B$ modes) and test parity-violating physics (via cosmic birefringence), but realizing the potential of these opportunities requires precise control and mitigation of systematic effects. To this end, some experiments (including LiteBIRD) will use rotating half-wave plates (HWPs) as polarization modulators. Ideally, this choice should remove the $1/f$ noise component in the observed polarization and reduce intensity-to-polarization leakage, but any real HWP is characterized by non-idealities that, if not properly treated in the analysis, can lead to new systematics. In this thesis, after briefly introducing the science case, we discuss the macro steps that make up any CMB experiment, introduce the HWP, and present a new time-ordered data (TOD) simulation pipeline tailored to a LiteBIRD-like experiment that returns TOD and binned maps for realistic beams and HWPs. We show that the simulation framework can be used to study how the HWP non-idealities affect the measured cosmic birefringence angle, resulting in a few degrees bias for a realistic choice of HWP. We also derive analytical formulae to model the observed temperature and polarization maps and test them against the simulations. Finally, we present a simple, semi-analytical end-to-end model to propagate the non-idealities through the macro-steps that make up any CMB experiment (observation of multi-frequency maps, foreground cleaning, and power spectra estimation) and compute the HWP-induced bias on the estimated tensor-to-scalar ratio, $r$, finding that the HWP leads to underestimating $r$. We also show how gain calibration of the CMB temperature can be used to partially mitigate the non-idealities' effect and present a set of recommendations for the HWP design that can help maximize the benefits of gain calibration. [abridged]

Submission history

Access paper:.

  • Other Formats

References & Citations

  • INSPIRE HEP
  • Google Scholar
  • Semantic Scholar

BibTeX formatted citation

BibSonomy logo

Bibliographic and Citation Tools

Code, data and media associated with this article, recommenders and search tools.

  • Institution

arXivLabs: experimental projects with community collaborators

arXivLabs is a framework that allows collaborators to develop and share new arXiv features directly on our website.

Both individuals and organizations that work with arXivLabs have embraced and accepted our values of openness, community, excellence, and user data privacy. arXiv is committed to these values and only works with partners that adhere to them.

Have an idea for a project that will add value for arXiv's community? Learn more about arXivLabs .

Guide to BibTeX Type MasterThesis

BibTeX is a reference management tool that is commonly used in LaTeX documents. The “masterthesis” BibTeX type is used for master’s theses. In this guide, we will explain the required and optional fields for the “masterthesis” BibTeX type.

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

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

Required Fields

The “masterthesis” BibTeX type requires the following fields:

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

Optional Fields

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

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

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

In this example, the BibTeX entry defines a master’s thesis authored by Jane Doe titled “A Study of Example”. The degree was awarded in 2022 by the University of Example, and the thesis was submitted in June in Example City, CA. The type of the thesis is specified as “Master’s thesis”, and a note is included that provides a URL for the thesis.

Purdue University Graduate School

Comparison of Soil Carbon Dynamics Between Restored Prairie and Agricultural Soils in the U.S. Midwest

Globally, soils hold more carbon than both the atmosphere and aboveground terrestrial biosphere combined. Changes in land use and land cover have the potential to alter soil carbon cycling throughout the soil profile, from the surface to meters deep, yet most studies focus only on the near surface impact ( 3 and C 4 photosynthetic pathway plant community composition. Comparative analysis of edaphic properties and soil carbon suggests that deep loess deposits in Nebraska permit enhanced water infiltration and SOC deposition to depths of ~100 cm in 60 years of prairie restoration. In Illinois, poorly drained, clay/lime rich soils on glacial till and a younger restored prairie age (15 years) restricted the influence of prairie restoration to the upper 30 cm. Comparing the δ 13 C values of SOC and SIC in each system demonstrated that SIC at each site is likely of lithogenic origin. This work indicates that the magnitude of influence of restoration management is dependent on edaphic properties inherited from geological and geomorphological controls. Future work should quantify root structures and redox properties to better understand the influence of rooting depth on soil carbon concentrations. Fast-cycling C dynamics can be assessed using continuous, in-situ CO 2 and O 2 soil gas concentration changes. The secondary objective of my thesis was to determine if manual, low temporal resolution gas sampling and analysis are a low cost and effective means of measuring soil O 2 and CO 2 , by comparing it with data from in-situ continuous (hourly) sensors. Manual analysis of soil CO 2 and O 2 from field replicates of buried gas collection cups resulted in measurement differences from the continuous sensors. Measuring CO2 concentration with manual methods often resulted in higher concentrations than hourly, continuous measurements across all sites. Additionally, O 2 concentrations measured by manual methods were higher than hourly values in the restored prairie and less in agricultural sites. A variety of spatial variability, pressure perturbations, calibration offsets, and system leakage influences on both analysis methods could cause the discrepancy.

NSF Grant 1331906

Degree type.

  • Master of Science
  • Earth, Atmospheric and Planetary Sciences

Campus location

  • West Lafayette

Advisor/Supervisor/Committee Chair

Additional committee member 2, additional committee member 3, additional committee member 4, additional committee member 5, usage metrics.

  • Environmental biogeochemistry
  • Soil chemistry and soil carbon sequestration (excl. carbon sequestration science)

CC BY 4.0

Monash University

File(s) under permanent embargo

Reason: Under embargo until May 2025. After this date a copy can be supplied under Section 51(2) of the Australian Copyright Act 1968 by submitting a document delivery request through your library, or by emailing [email protected]

Texture formation in magnetostrictive Fe-Ga alloy fabricated by laser powder bed fusion

Principal supervisor, additional supervisor 1, year of award, department, school or centre, degree type, usage metrics.

Faculty of Engineering Theses

  • Functional materials
  • Additive manufacturing

IMAGES

  1. BibTeX gatech-thesis bibliography style [examples]

    bibtex for thesis

  2. Bibliography management with bibtex

    bibtex for thesis

  3. BibTeX format explained [with examples]

    bibtex for thesis

  4. BibTeX Style Beispiele

    bibtex for thesis

  5. BibTeX jkthesis bibliography style [examples]

    bibtex for thesis

  6. Bibliography management with bibtex

    bibtex for thesis

VIDEO

  1. How to Cite References in BiBtex format in Over Leaf (LaTex Editor)

  2. Intro to BibTeX for automatic citations & reference lists

  3. Automatically importing publications to BibTex file based on gscholar.py (getbib.py)

  4. Paste BibTeX to add publications

  5. BibTeX: Book Item Entered with a Template

  6. Importing BibTex references to JabRef

COMMENTS

  1. BibTeX template: phdthesis

    BibTeX template files for @phdthesis: • author • title • school • year. The quick BibTeX guide All you ever need to know about ... 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 ...

  2. Guide to BibTeX Type PhdThesis

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

  3. citing

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

  4. bibtex

    There are many types of thesis and @mastersthesis provides the field type just for this purpose. I wouldn't bother creating a new entry type just for a couple of citations. ... {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 ...

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

    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

  6. Bibliography management with bibtex

    Many users prefer to use a dedicated \ (\mathrm {Bib\TeX}\) bibliography database editor/manager, such as JabRef or BibDesk to maintain, edit and add entries to their .bib files. Using a GUI can indeed help reduce syntax and spelling errors whilst creating bibliography entries in a \ (\mathrm {Bib\TeX}\) file.

  7. Guide to Writing Your Thesis in LaTeX: Bibliography

    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.

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

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

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

  10. BibTeX Code

    Master's thesis, Garden of Sushi School of Sushi, Maui, HI, ProQuest Dissertations and Theses database (AAT 3300426). Use mastersthesis class. Type field is optional if "M.S. thesis"; otherwise, enter the appropriate degree, Master of Arts ("M.A. thesis") this case.

  11. BibMe: Generate BIBTEX thesis citations for your bibliography

    BIBTEX Citation Generator >. Cite a Thesis. BibMe Free Bibliography & Citation Maker - MLA, APA, Chicago, Harvard.

  12. BibTeX Style Examples

    BibTeX Style Examples. Next: Drawing in LaTeX with TikZ. In the following section you see how different bibtex styles look in the resulting PDF. The style is defined in the \bibliographystyle { style } command where style is to be replaced with one of the following styles (e.g. alpha, etc.).

  13. Cite a Thesis / Dissertation

    Thesis Paper AI Proofreader Essay Checker PhD dissertation APA editing Academic editing College admissions essay Personal statement English proofreading Spanish, French, or German. About our services. Proofreading services Proofreading & editing example Essay coaching example Happiness guarantee.

  14. Citing a Thesis in BIBTEX

    BIBTEX Citation Generator >. Cite a Thesis. Citation Machine® helps students and professionals properly credit the information that they use. Cite sources in APA, MLA, Chicago, Turabian, and Harvard for free.

  15. Bibtex Citation Generator

    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. Reference List. Place this part in your bibliography or reference list at the end of your assignment.

  16. How can I use BibTeX to cite a web page?

    It's a little frustrating that BibTeX didn't officially keep up with web pages as an entry. - Fuhrmanator. Aug 27, 2012 at 15:35. 15. There is a urldate field for biblatex, that acts as an accessed date field. - naught101. Oct 15, 2012 at 2:22. 2.

  17. Complete list of BibTeX entry types [with examples]

    The 14 BibTeX entry types. Possibly the most difficult aspect of using BibTeX to manage bibliographies is deciding what entry type to use for a reference source. We list all the 14 BibTeX entry types including their description on when to use. article. An article from a journal, magazine, newspaper, or periodical.

  18. Synergistic effect of a Berlin green framework for highly efficient

    We developed a novel moisture-induced power generator (MPG) by utilizing Berlin green (BG) as an active material to enhance its moisture-electric energy transformation (MEET) performance. The bilayer-based MPG device was fabricated by stacking a BG/graphene oxide/cellulose nanofiber (BGC) composite layer on a NaCl/

  19. @masterthesis doesn't work for bibtex citation [duplicate]

    My bibliography at the end of the paper gets wrong. I'm using abntcite.sty. Here goes the code: @masterthesis{Filho2016Automatic, author = {Silva{ }Filho, P. F. F.}, institution = {Dissertação (Mestrado) - ITA}, pages = 159, school = {Dissertação (Mestrado) - ITA}, title = {Automatic Landmark Recognition in aerial images for the autonomous ...

  20. [2405.05651] Development of realistic simulations for the polarization

    In this thesis, after briefly introducing the science case, we discuss the macro steps that make up any CMB experiment, introduce the HWP, and present a new time-ordered data (TOD) simulation pipeline tailored to a LiteBIRD-like experiment that returns TOD and binned maps for realistic beams and HWPs. We show that the simulation framework can ...

  21. Guide to BibTeX Type MasterThesis

    In this example, the BibTeX entry defines a master's thesis authored by Jane Doe titled "A Study of Example". The degree was awarded in 2022 by the University of Example, and the thesis was submitted in June in Example City, CA. The type of the thesis is specified as "Master's thesis", and a note is included that provides a URL for ...

  22. Comparison of Soil Carbon Dynamics Between Restored Prairie and

    Globally, soils hold more carbon than both the atmosphere and aboveground terrestrial biosphere combined. Changes in land use and land cover have the potential to alter soil carbon cycling throughout the soil profile, from the surface to meters deep, yet most studies focus only on the near surface impact (< 25 cm deep). This research bias toward shallow soil carbon cycling has ramifications ...

  23. bibtex

    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. format.authors "author" output.check. new.block. format.btitle "title" output.check. new.block.

  24. Texture formation in magnetostrictive Fe-Ga alloy fabricated by laser

    Texture is a critical factor in the dimensional change of Fe-Ga alloy when it is exposed to a magnetic field. Utilising 3D printing for preparation of Fe-Ga alloy may lead to an enhancement of this deformation if the texture formation is controlled. However, little has been studied on the effect of 3D printing on the microstructural and magnetic properties of Fe-Ga alloys. This thesis develops ...