Expert-level academic research and LaTeX paper writing with IEEE/APA citation support. Creates peer-reviewed research papers, literature reviews, and theses with proper scholarly standards.
I help you create expert-level academic research documents with:
references.bib as the single source of truth.Use this skill when you need to write:
Phase 1: Requirements → Phase 2: Planning → Phase 3: Discovery
↓ ↓ ↓
Phase 6: QA ← Phase 5: Writing ← Phase 4: Structure
Before starting, clarify with the user:
Document Type
Topic & Scope
Target Venue
Citation Format
## Research Document Request
**Type:** [Research Paper / Literature Review / Thesis]
**Topic:** [Your research topic]
**Target:** [Conference/Journal name or "General"]
**Length:** [X pages or X words]
**Citation:** [IEEE / APA / Other]
**Deadline:** [Date if applicable]
**Special Requirements:** [Any specific guidelines]
| Database | Best For |
|---|---|
| Google Scholar | Broad academic search |
| IEEE Xplore | Engineering, CS |
| ACM Digital Library | Computing |
| arXiv | Preprints, CS, physics |
| PubMed | Medicine, life sciences |
| ScienceDirect | General science |
| JSTOR | Humanities, social sciences |
Use your platform's browsing/search tool. If browsing is unavailable, ask the user to provide PDFs/DOIs/URLs (or an existing references.bib) and proceed from those.
Query patterns to use:
broad topic + survey / review"exact phrase"(term1 AND term2) OR term3For systematic reviews, keep a reproducible search log (see references/systematic-review-prisma.md).
Step 1: Foundational Sources
Step 2: Recent Work
Step 3: Related Work
For each source, verify:
Create a source database (and keep references.bib as the single source of truth):
## Source [N]
- **Citation Key:** [e.g., smith2023transformers]
- **Title:** [Paper title]
- **Authors:** [Author list]
- **Venue/Year:** [Journal/Conference, Year]
- **Status:** [peer-reviewed / preprint / standard / dataset / software]
- **DOI:** [If available]
- **URL:** [Canonical link]
- **Citations:** [Count + date checked]
- **Relevance:** [High/Medium/Low]
- **Key Points:** [1-3 bullets: what you will cite]
- **Limitations:** [1-2 bullets]
- **Use In:** [Which section of your document]
See references/source-evaluation.md and references/bibliography-workflows.md.
When you find a relevant paper but cannot access the full text:
Check open access first:
node scripts/resolve-papers.js --doi "10.xxxx/yyyy" to find legal OA versionsUse available metadata:
Ask the user:
Be transparent:
1. Title
2. Abstract (150-250 words)
3. Keywords (5-7 terms)
4. Introduction
- Background and motivation
- Problem statement
- Research objectives
- Contributions (3-5 bullet points)
- Paper organization
5. Related Work / Literature Review
- Thematic organization
- Gap identification
6. Methodology / Approach
- System design (if applicable)
- Algorithm description
- Technical approach
7. Results / Evaluation
- Experimental setup
- Metrics
- Results presentation
8. Discussion
- Interpretation
- Implications
- Limitations
9. Conclusion
- Summary
- Future work
10. References
1. Title
2. Abstract
3. Introduction
- Review scope and objectives
- Methodology (how sources were selected)
4. Thematic Sections (organized by themes)
5. Synthesis and Discussion
- Trends and patterns
- Gaps in literature
6. Conclusion
- Summary
- Future directions
7. References
1. Title
2. Abstract
3. Introduction (scope + research questions)
4. Methods (protocol, databases, queries, screening, extraction, appraisal)
5. Results (selection counts + evidence tables + taxonomy)
6. Discussion (implications, limitations, threats to validity)
7. Conclusion (what is known + gaps + future directions)
8. References
9. Appendices (full queries, screening reasons, extraction schema)
See references/systematic-review-prisma.md.
1. Abstract
2. Introduction
- Background
- Problem statement
- Research questions
- Thesis objectives
- Contributions
3. Literature Review
- Theoretical framework
- Related work
- Research gap
4. Methodology
- Research design
- Data collection
- Analysis methods
5. Results/Findings
6. Discussion
7. Conclusion
8. References
9. Appendices
For submission, prefer official publisher templates (see references/official-templates.md). The templates below are scaffolds for learning the structure.
Included templates:
references/templates/ieee-conference.tex (IEEE conference paper)references/templates/literature-review.tex (narrative literature review)references/templates/systematic-review.tex (systematic review)references/templates/thesis.tex (thesis/dissertation)references/templates/apa7-manuscript.tex (APA 7 manuscript)references/templates/research-proposal.tex (research proposal)Minimal IEEE skeleton (BibTeX):
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{graphicx}
\usepackage{xcolor}
\title{Your Paper Title}
\author{
\IEEEauthorblockN{First Author}
\IEEEauthorblockA{Department, University\\
City, Country\\
[email protected]}
}
\begin{document}
\maketitle
\begin{abstract}
Your abstract goes here (150--250 words).
\end{abstract}
\begin{IEEEkeywords}
keyword1, keyword2, keyword3
\end{IEEEkeywords}
\section{Introduction}
...
\bibliographystyle{IEEEtran}
\bibliography{references}
\end{document}
Tone:
Avoid:
IEEE Style (numbered):
Recent work has shown this approach is effective \cite{smith2023}.
Multiple studies support this finding \cite{smith2023, jones2022, doe2021}.
APA Style (author-date):
% Parenthetical (APA author-date)
Recent work has shown this approach is effective \parencite{smith2023}.
Multiple studies support this finding \parencite{smith2023,jones2022}.
% Narrative
\textcite{smith2023} demonstrated this approach is effective.
Each paragraph should follow a clear pattern:
Inline math: $E = mc^2$
Displayed equations:
\begin{equation}
f(x) = \sum_{i=1}^{n} a_i x^i
\end{equation}
Multi-line equations:
\begin{align}
a &= b + c \\
&= d + e + f
\end{align}
Matrices:
\begin{bmatrix}
a_{11} & a_{12} \\
a_{21} & a_{22}
\end{bmatrix}
Proofs:
\begin{proof}
Let $x$ be any element...
Therefore, we conclude...
\end{proof}
See references/latex-math-guide.md for more examples.
Content:
Technical (IEEE):
Writing Quality:
Evidence & Citations:
references.bibreferences/claim-evidence-map.md)Reproducibility (If Empirical):
references/reproducibility-checklist.md)Statistics (If Applicable):
references/statistical-reporting.md)Threats to Validity:
references/threats-to-validity.md)Prefer managing references via references.bib (BibTeX/BibLaTeX) and generating the reference list automatically; see references/bibliography-workflows.md. The examples below are reference list patterns for manual verification.
Journal Article:
[1] A. Author, B. Author, and C. Author, "Title of article," Journal Name, vol. X, no. Y, pp. ZZ-ZZ, Month Year.
Conference Paper:
[2] A. Author and B. Author, "Title of paper," in Proc. Conference Name, City, Country, Year, pp. ZZ-ZZ.
Book:
[3] A. Author, Title of Book, Edition. City, State: Publisher, Year.
See references/ieee-citation-guide.md for complete reference.
Journal Article:
Author, A. A., & Author, B. B. (Year). Title of article. Journal Name, Volume(Issue), pages. https://doi.org/xxxxx
Conference Paper:
Author, A. A., & Author, B. B. (Year, Month). Title of paper. In Conference Name (pp. pages). Publisher.
See references/apa-citation-guide.md for complete reference.
I generate .tex files that you can compile with:
# IEEE-style (BibTeX)
pdflatex paper.tex
bibtex paper
pdflatex paper.tex
pdflatex paper.tex
# APA-style (BibLaTeX + biber)
pdflatex paper.tex
biber paper
pdflatex paper.tex
pdflatex paper.tex
# Or use latexmk (recommended if available)
latexmk -pdf -bibtex paper.tex
latexmk -pdf -usebiber paper.tex
If LaTeX is not suitable, I can also generate:
references/ieee-citation-guide.md - Complete IEEE reference examplesreferences/apa-citation-guide.md - Complete APA reference examplesreferences/latex-math-guide.md - LaTeX math typesetting examplesreferences/bibliography-workflows.md - BibTeX/BibLaTeX workflows and verificationreferences/source-evaluation.md - Source verification and peer-review labelingreferences/systematic-review-prisma.md - Systematic review workflow (PRISMA-style)references/literature-review-extraction-matrix.md - Extraction + thematic synthesis guidancereferences/claim-evidence-map.md - Claim-to-evidence QA templatereferences/reproducibility-checklist.md - Reproducibility QA checklistreferences/statistical-reporting.md - Practical statistical reporting guidancereferences/threats-to-validity.md - Threats-to-validity promptsreferences/acm-citation-guide.md - ACM citation format referencereferences/revision-response-guide.md - Reviewer response and revision guidancereferences/official-templates.md - Links to official publisher LaTeX templatesreferences/templates/ - LaTeX templates (IEEE, APA, thesis, reviews, proposals)examples/ - Protocols and working templates (vocabulary, extraction matrix, claim-evidence map)scripts/resolve-papers.js - Paper discovery and open-access resolution via Semantic Scholar, Unpaywall, CrossRefscripts/validate-bib.js - BibTeX entry validation against CrossRefscripts/check-citations.js - Citation key consistency checker