Scientific Writing
Academic paper composition, LaTeX formatting, and scholarly communication.
Paper Structure Templates
IMRaD (standard empirical paper)
- Title: Concise, informative, includes key variables
- Abstract: Background (1-2 sentences) → Objective → Methods → Results → Conclusion (150-300 words)
- Introduction: Broad context → Narrow focus → Gap → Research question/hypothesis
- Methods: Reproducible detail; subsections by procedure
- Results: Findings without interpretation; tables/figures referenced
- Discussion: Summary → Interpretation → Comparison with literature → Limitations → Implications → Future work
- References: Consistent citation style
Review / Survey Paper
- Introduction with scope and search methodology
- Taxonomy / organizational framework
- Systematic coverage of subtopics
- Synthesis and comparison
- Open problems and future directions
Grant Proposal (NSF/NIH style)
- Specific Aims (1 page)
- Significance
- Innovation
- Approach (preliminary data, research plan, timeline)
- Budget justification
LaTeX Support
Common Templates
Article:
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,amssymb,amsthm}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage[margin=1in]{geometry}
\usepackage{natbib}
\title{Your Title}
\author{Author Name \\ Institution \\ \texttt{email@example.com}}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
Your abstract here.
\end{abstract}
\section{Introduction}
\section{Methods}
\section{Results}
\section{Discussion}
\bibliographystyle{plainnat}
\bibliography{references}
\end{document}
Useful LaTeX Packages
booktabs — professional tables
siunitx — SI units and number formatting
algorithm2e — pseudocode
tikz/pgfplots — figures and plots
cleveref — smart cross-references
subcaption — subfigures
listings/minted — code listings
BibTeX Entry Formats
@article{key,
author = {Last, First and Last2, First2},
title = {Paper Title},
journal = {Journal Name},
year = {2024},
volume = {1},
pages = {1--10},
doi = {10.xxxx/xxxxx}
}
Reviewer Response Template
We thank the reviewer for their constructive feedback. Below we address each comment point by point.
---
**Reviewer Comment 1:** [Quote the comment]
**Response:** [Your response]
**Changes made:** [Describe specific changes with page/line numbers]
---
Guidelines for reviewer responses:
- Be respectful and grateful, even for harsh reviews
- Address every point, even minor ones
- Clearly distinguish between changes made and rebuttals
- Provide evidence (new analyses, references) for disagreements
- Reference specific manuscript locations for changes
Writing Quality Checklist
Clarity
- One idea per paragraph
- Topic sentence first
- Active voice preferred (but passive OK for methods)
- Avoid jargon without definition
- Short sentences for complex ideas
Precision
- Quantify claims ("increased by 15%" not "significantly increased")
- Distinguish correlation from causation
- Use hedging appropriately ("suggests" vs "proves")
- Report effect sizes, not just p-values
Flow
- Logical paragraph transitions
- Consistent terminology throughout
- Forward references for later sections
- Signposting ("First... Second... Finally...")
Common Issues to Fix
- Dangling modifiers
- Pronoun ambiguity ("this" without referent)
- Nominalization overuse (use verbs, not noun forms)
- Redundancy ("past history", "future plans")
- Weak openings ("It is well known that...")
Citation Styles
- APA 7th: (Author, Year) — social sciences
- IEEE: [1] numbered — engineering/CS
- Vancouver: (1) numbered — biomedical
- Chicago: footnotes — humanities
- Nature: superscript numbered — natural sciences
When unsure, ask the user for their target journal/conference and adapt accordingly.
1---2name: scientific-writing3description: Assist with scientific paper writing, LaTeX formatting, abstract drafting, review responses, grant proposals, and academic communication. Use when user asks to write/edit a paper section, draft an abstract, format in LaTeX, respond to reviewer comments, write a grant proposal, or improve academic writing. Triggers on "write abstract", "draft introduction", "LaTeX", "reviewer response", "grant proposal", "improve my writing", "paper draft", "methods section".4---5
6# Scientific Writing
7
8Academic paper composition, LaTeX formatting, and scholarly communication.
9
10## Paper Structure Templates
11
12### IMRaD (standard empirical paper)
131. **Title**: Concise, informative, includes key variables
142. **Abstract**: Background (1-2 sentences) → Objective → Methods → Results → Conclusion (150-300 words)
153. **Introduction**: Broad context → Narrow focus → Gap → Research question/hypothesis
164. **Methods**: Reproducible detail; subsections by procedure
175. **Results**: Findings without interpretation; tables/figures referenced
186. **Discussion**: Summary → Interpretation → Comparison with literature → Limitations → Implications → Future work
197. **References**: Consistent citation style
20
21### Review / Survey Paper
221. Introduction with scope and search methodology
232. Taxonomy / organizational framework
243. Systematic coverage of subtopics
254. Synthesis and comparison
265. Open problems and future directions
27
28### Grant Proposal (NSF/NIH style)
291. Specific Aims (1 page)
302. Significance
313. Innovation
324. Approach (preliminary data, research plan, timeline)
335. Budget justification
34
35## LaTeX Support
36
37### Common Templates
38
39Article:
40```latex
41\documentclass[12pt]{article}
42\usepackage[utf8]{inputenc}
43\usepackage{amsmath,amssymb,amsthm}
44\usepackage{graphicx}
45\usepackage{hyperref}
46\usepackage[margin=1in]{geometry}
47\usepackage{natbib}
48
49\title{Your Title}
50\author{Author Name \\ Institution \\ \texttt{email@example.com}}
51\date{\today}
52
53\begin{document}
54\maketitle
55\begin{abstract}
56Your abstract here.
57\end{abstract}
58
59\section{Introduction}
60\section{Methods}
61\section{Results}
62\section{Discussion}
63
64\bibliographystyle{plainnat}
65\bibliography{references}
66\end{document}
67```
68
69### Useful LaTeX Packages
70- `booktabs` — professional tables
71- `siunitx` — SI units and number formatting
72- `algorithm2e` — pseudocode
73- `tikz/pgfplots` — figures and plots
74- `cleveref` — smart cross-references
75- `subcaption` — subfigures
76- `listings/minted` — code listings
77
78### BibTeX Entry Formats
79```bibtex
80@article{key,
81 author = {Last, First and Last2, First2},
82 title = {Paper Title},
83 journal = {Journal Name},
84 year = {2024},
85 volume = {1},
86 pages = {1--10},
87 doi = {10.xxxx/xxxxx}
88}
89```
90
91## Reviewer Response Template
92
93```
94We thank the reviewer for their constructive feedback. Below we address each comment point by point.
95
96---
97
98**Reviewer Comment 1:** [Quote the comment]
99
100**Response:** [Your response]
101
102**Changes made:** [Describe specific changes with page/line numbers]
103
104---
105```
106
107Guidelines for reviewer responses:
108- Be respectful and grateful, even for harsh reviews
109- Address every point, even minor ones
110- Clearly distinguish between changes made and rebuttals
111- Provide evidence (new analyses, references) for disagreements
112- Reference specific manuscript locations for changes
113
114## Writing Quality Checklist
115
116### Clarity
117- One idea per paragraph
118- Topic sentence first
119- Active voice preferred (but passive OK for methods)
120- Avoid jargon without definition
121- Short sentences for complex ideas
122
123### Precision
124- Quantify claims ("increased by 15%" not "significantly increased")
125- Distinguish correlation from causation
126- Use hedging appropriately ("suggests" vs "proves")
127- Report effect sizes, not just p-values
128
129### Flow
130- Logical paragraph transitions
131- Consistent terminology throughout
132- Forward references for later sections
133- Signposting ("First... Second... Finally...")
134
135### Common Issues to Fix
136- Dangling modifiers
137- Pronoun ambiguity ("this" without referent)
138- Nominalization overuse (use verbs, not noun forms)
139- Redundancy ("past history", "future plans")
140- Weak openings ("It is well known that...")
141
142## Citation Styles
143- APA 7th: (Author, Year) — social sciences
144- IEEE: [1] numbered — engineering/CS
145- Vancouver: (1) numbered — biomedical
146- Chicago: footnotes — humanities
147- Nature: superscript numbered — natural sciences
148
149When unsure, ask the user for their target journal/conference and adapt accordingly.