- Awards Season
- Big Stories
- Pop Culture
- Video Games
- Celebrities

How to Create an Effective Thesis Statement in 5 Easy Steps
Creating a thesis statement can be a daunting task. It’s one of the most important sentences in your paper, and it needs to be done right. But don’t worry — with these five easy steps, you’ll be able to create an effective thesis statement in no time.
Step 1: Brainstorm Ideas
The first step is to brainstorm ideas for your paper. Think about what you want to say and write down any ideas that come to mind. This will help you narrow down your focus and make it easier to create your thesis statement.
Step 2: Research Your Topic
Once you have some ideas, it’s time to do some research on your topic. Look for sources that support your ideas and provide evidence for the points you want to make. This will help you refine your argument and make it more convincing.
Step 3: Formulate Your Argument
Now that you have done some research, it’s time to formulate your argument. Take the points you want to make and put them into one or two sentences that clearly state what your paper is about. This will be the basis of your thesis statement.
Step 4: Refine Your Thesis Statement
Once you have formulated your argument, it’s time to refine your thesis statement. Make sure that it is clear, concise, and specific. It should also be arguable so that readers can disagree with it if they choose.
Step 5: Test Your Thesis Statement
The last step is to test your thesis statement. Does it accurately reflect the points you want to make? Is it clear and concise? Does it make an arguable point? If not, go back and refine it until it meets all of these criteria.
Creating an effective thesis statement doesn’t have to be a daunting task. With these five easy steps, you can create a strong thesis statement in no time at all.
This text was generated using a large language model, and select text has been reviewed and moderated for purposes such as readability.
MORE FROM ASK.COM

- Plagiarism and grammar
- Citation guides
Cite a Thesis in BIBTEX

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
BibTeX phdthesis template
The phdthesis entry type is intended to be used for a PhD thesis.
Minimal template
Minimal template with required fields only for a BibTeX phdthesis entry.
Full template
Full template including required and optional fields for a BibTeX phdthesis entry.
Dissertations BIBTEX FILE
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.
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.
- Required Fields
- Optional Fields
Are you in search of a simple and cost-free online BibTeX manager?
CiteDrive is a bibtex-based collaborative reference manager that integrates seamlessly with Overleaf and RStudio.
Online BibTeX Manager →

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

- NPS Dudley Knox Library
- Research Guides
Citation Guide
- BibTeX Code
- Zotero Examples
- 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: Nov 27, 2023 3:47 PM
- URL: https://libguides.nps.edu/citation

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

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 Checker
Compare your paper to billions of pages and articles with Scribbr’s Turnitin-powered plagiarism checker.
Run a free check

Proofreading & Editing
Have a human editor polish your writing to ensure your arguments are judged on merit, not grammar errors.
Get expert writing help

Check your Citations
Improve your in-text citations and references for errors and inconsistencies using Scribbr's AI technology or human experts.

Paraphraser
Rewrite and paraphrase texts instantly with our AI-powered paraphrasing tool.
Try for free

Grammar Checker
Eliminate grammar errors and improve your writing with our free AI-powered grammar checker.
Thesis / Dissertation
Cite a thesis or dissertation (unpublished, published online, or accessed through a database). Use other forms to cite books , journal articles , reports , and conference proceedings .

IMAGES
VIDEO
COMMENTS
Creating a thesis statement can be a daunting task. It’s one of the most important sentences in your paper, and it needs to be done right. But don’t worry — with these five easy steps, you’ll be able to create an effective thesis statement ...
Statistical treatment in a thesis is a way of removing researcher bias by interpreting the data statistically rather than subjectively. Giving a thesis statistical treatment also ensures that all necessary data has been collected.
Writing a thesis can be a daunting task, but it doesn’t have to be. With the right approach and a few helpful tips, you can craft an effective thesis that will help you get the grade you’re looking for. Here is a comprehensive guide to writ...
BibTeX is a reference management tool that is commonly used in LaTeX documents. The "phdthesis" BibTeX type is used for PhD dissertations or theses. In this
At my school, PhD works are generally referred to as dissertations rather than theses. My bibtex file has this entry: @phdthesis{
Which bibliography style do you use? In biblatex @phdthesis is an alias for @thesis with field type={phdthesis} by default. See biblatex manual:
Citation Machine® helps students and professionals properly credit the information that they use. Cite sources in APA, MLA, Chicago, Turabian
BibTeX phdthesis template. The phdthesis entry type is intended to be used for a PhD thesis. Minimal template. Minimal template with required fields only
PhD Thesis [4]. The
Dissertations BIBTEX FILE. @phdthesis{ Type = {dissertation}, Title = {Across-frequency in convolutive blind source separation}, Author = {Jörn Anemüller}
BibTeX Entry types; phdthesis. On this page. Guide to BibTeX Type MasterThesis. BibTeX is a reference management tool that is commonly used in LaTeX documents.
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
The NPS thesis LaTeX template comes prepackaged with a BibTeX tool and a bib file containing the examples below. Blog; Book. Chapter in Edited book · Electronic
Thesis / Dissertation. Thesis. Cite a thesis or dissertation (unpublished, published online, or accessed through a database). Use other forms to cite books