agentsclimarketplace

Thesis writing guide

Skill brycewang-stanford/Auto-Empirical-Research-Skills/skills/43-wentorai-research-plugins/skills/writing/templates/thesis-writing-guide

🔬 A curated collection of 23,000+ agent skills for empirical research across 8 social science disciplines. | 精选 23,000+ AI Agent 技能库,覆盖8大社会科学学科的实证研究。CoPaper.AI 20分钟完成一篇可复现的规范实证论文,并支持用户上传 Skills。-- Maintained by CoPaper.AI from Stanford REAP.

Install
npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill thesis-writing-guide

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Templates, formatting rules, and strategies for thesis and dissertation writing

SKILL.md

8.5 KB, as published. Nobody here has run it

Thesis Writing Guide

Overview

Writing a thesis or dissertation is the culminating challenge of graduate education. Unlike journal papers, a thesis demands sustained coherence across hundreds of pages, covering background, methodology, multiple studies, and synthesis. The formatting requirements are often institution-specific and unforgiving -- a misplaced margin or incorrect heading style can delay your defense.

This guide draws from the awesome-thesis repository (626+ stars), which curates practical tips and tricks for computer science theses, and extends the advice to cover all disciplines. It covers thesis structure, LaTeX and Word templates, formatting checklists, writing strategies for long documents, and common pitfalls that delay graduation.

Whether you are writing a master's thesis (50-100 pages) or a PhD dissertation (150-300 pages), the planning and execution patterns here will help you finish on time and produce a document you are proud of.

Thesis Structure

Standard Structure (Monograph Style)

ChapterContentTypical Pages
1. IntroductionProblem, motivation, contributions, outline10-20
2. BackgroundCore concepts, definitions, prerequisites15-25
3. Related WorkComprehensive literature review15-30
4. MethodologyYour approach, design, algorithms20-40
5. ExperimentsSetup, results, analysis20-40
6. DiscussionInterpretation, limitations, broader impact10-20
7. ConclusionSummary, contributions, future work5-10

Paper-Based (Compilation) Style

Many institutions now accept theses composed of published papers:

Chapter 1: Introduction and Overview (new content, 15-20 pages)
Chapter 2: Paper A (published, reformatted)
Chapter 3: Paper B (published, reformatted)
Chapter 4: Paper C (under review, reformatted)
Chapter 5: Synthesis and Conclusion (new content, 10-15 pages)
Appendix: Supplementary materials for each paper

The key challenge with compilation theses is the "red thread" -- the narrative that connects your papers into a coherent whole. The introduction and conclusion chapters carry this responsibility.

LaTeX Templates

University Template Setup

Most universities provide official LaTeX templates. Here is a generic setup:

\documentclass[12pt, a4paper, twoside]{report}

% Essential packages
\usepackage[margin=1in, bindingoffset=0.5in]{geometry}
\usepackage{setspace}
\doublespacing
\usepackage[hidelinks]{hyperref}
\usepackage{cleveref}
\usepackage[backend=biber, style=numeric]{biblatex}
\addbibresource{thesis.bib}

% Front matter
\begin{document}
\frontmatter
\include{chapters/titlepage}
\include{chapters/abstract}
\include{chapters/acknowledgments}
\tableofcontents
\listoffigures
\listoftables

% Main content
\mainmatter
\include{chapters/introduction}
\include{chapters/background}
\include{chapters/related_work}
\include{chapters/methodology}
\include{chapters/experiments}
\include{chapters/discussion}
\include{chapters/conclusion}

% Back matter
\backmatter
\printbibliography
\appendix
\include{chapters/appendix_a}
\end{document}

Popular Thesis Templates

TemplateInstitution/StyleLink
thuthesisTsinghua Universitygithub.com/tuna/thuthesis
SJTUThesisShanghai Jiao Tonggithub.com/sjtug/SJTUThesis
DissertateHarvard (multi-school)github.com/suchow/Dissertate
novathesisUniversidade Nova de Lisboagithub.com/joaomlourenco/novathesis
cleanthesisGeneric clean stylegithub.com/derric/cleanthesis

Project Organization

thesis/
  main.tex                # Master file
  thesis.bib              # Bibliography
  chapters/
    titlepage.tex
    abstract.tex
    introduction.tex
    ...
  figures/
    ch1/
    ch2/
    ...
  tables/
  code/                   # Code listings
  Makefile                # Build automation
  .gitignore

Writing Strategies for Long Documents

The Modular Writing Approach

  1. Write chapters independently. Each chapter should be understandable on its own before integration.
  2. Start with the easiest chapter. Often this is the Methods or a chapter based on a published paper.
  3. Write the Introduction last. You need to know all your contributions before you can introduce them.
  4. Set daily word count targets. 500 words/day produces a 100-page thesis in roughly 4 months of writing.

Timeline Planning

For a 6-month writing period:

MonthTaskDeliverable
1Outline all chapters; write MethodsMethods draft
2Write Experiments chapterExperiments draft
3Write Background and Related WorkLiterature review draft
4Write Discussion and ConclusionFull rough draft
5Write Introduction; revise all chaptersComplete first draft
6Advisor review; final revisions; formattingSubmission-ready thesis

Managing Advisor Feedback

  • Send one chapter at a time for review, not the entire thesis.
  • Include a cover note explaining what feedback you need (structure? content? prose?).
  • Allow 2 weeks per chapter for advisor review.
  • Track revisions using latexdiff or track changes in Word.
# Generate a visual diff between thesis versions
latexdiff old_version.tex new_version.tex > diff.tex
pdflatex diff.tex

Formatting Checklist

Before submission, verify every item:

Document-Level

  • Title page matches university template exactly.
  • Page numbers: roman for front matter, arabic for main text.
  • Margins meet requirements (typically 1-1.5 inch, larger on binding side).
  • Line spacing is correct (usually double-spaced; some allow 1.5).
  • Font and size comply (usually 12pt Times New Roman or Computer Modern).

Figures and Tables

  • All figures are referenced in the text.
  • Figure captions are below figures; table captions are above tables.
  • Resolution is at least 300 DPI for raster images.
  • All figures are readable in grayscale (accessibility).

References

  • All cited works appear in the bibliography.
  • All bibliography entries are cited in the text.
  • Citation style matches university requirements.
  • DOIs are included where available.

Front and Back Matter

  • Abstract is within the word limit.
  • Acknowledgments are complete (funding, advisor, committee, family).
  • Table of contents, list of figures, list of tables are up to date.
  • Appendices are properly numbered and referenced.

Common Pitfalls

  1. Starting too late. Begin writing during your research, not after.
  2. Perfectionism on first drafts. "Done is better than perfect" for draft 1.
  3. Inconsistent notation. Define a notation table and stick to it across all chapters.
  4. Ignoring the formatting guide. Read your university's thesis manual before writing, not the week before submission.
  5. Not backing up. Use Git + cloud storage. Losing a thesis to hardware failure is devastating and preventable.

Best Practices

  • Use version control. Git with a private GitHub/GitLab repository provides backup and history.
  • Compile frequently. Catch LaTeX errors early rather than debugging 200 pages of broken code.
  • Create a glossary. Define all domain-specific terms in one place for consistency.
  • Write the abstract in three versions: 50-word (elevator pitch), 150-word (standard), and 300-word (extended).
  • Schedule your defense date early. Having a deadline makes the writing timeline concrete.
  • Read other theses from your lab. They set expectations for scope, depth, and style.

References

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.