Manuscript Formatting and Submission Preparation
Format manuscripts to meet journal-specific requirements and prepare submission packages.
When to Use
- Formatting a manuscript for a specific journal
- Preparing a submission package (cover letter, figures, supplementary)
- Converting between formats (Word to LaTeX, markdown to LaTeX)
- Checking compliance with author guidelines
- Managing references and BibTeX
Common Journal Formats
IEEE
- Template: IEEEtran class
- Columns: Two-column
- References: Numbered, [1] style
- Figures: Fit within column or span both columns
- Page limit: Varies (typically 6-8 for conference, 12-14 for journal)
\documentclass[journal]{IEEEtran}
\usepackage{cite}
\usepackage{amsmath}
\usepackage{graphicx}
Nature/Science
- Format: Single column, specific heading hierarchy
- References: Superscript numbered
- Word limit: ~3000-5000 words (main text)
- Figures: Max 6-8, submitted as separate files
- Methods: Often separate section with no word limit
PNAS
- Template: pnas-new class
- Columns: Two-column in print, single for review
- Word limit: ~4500 words
- References: Numbered
- Significance statement: Required, 120 words max
PLoS ONE
- Format: No specific template required
- References: Numbered, Vancouver style
- No length restriction
- Data availability: Statement required
Elsevier
- Template: elsarticle class
- Multiple formats: preprint, review, final
\documentclass[preprint,12pt]{elsarticle}
LaTeX Essentials
Document Structure
\documentclass[options]{class}
\usepackage{packages}
\title{Title}
\author{Authors}
\begin{document}
\maketitle
\begin{abstract}
\end{abstract}
\section{Introduction}
\section{Methods}
\section{Results}
\section{Discussion}
\bibliography{references}
\end{document}
BibTeX Management
@article{smith2024,
author = {Smith, John and Doe, Jane},
title = {Title of the Paper},
journal = {Journal Name},
year = {2024},
volume = {10},
pages = {1--15},
doi = {10.1000/example}
}
Common BibTeX styles:
plain - numbered, sorted alphabetically
unsrt - numbered, order of citation
ieeetr - IEEE transactions style
apalike - APA-like author-year
Cross-references
\label{fig:results} % Label a figure
\ref{fig:results} % Reference by number
Figure~\ref{fig:results} % Standard format
Submission Checklist
Before Submission
Cover Letter Template
Dear Editor,
We submit our manuscript titled "{TITLE}" for consideration
in {JOURNAL}.
{1-2 sentences: what the study did and found}
{1-2 sentences: why this matters to the journal's readership}
{1 sentence: confirmation of originality and no concurrent submission}
We suggest the following reviewers:
1. {Name, Affiliation, Email}
2. {Name, Affiliation, Email}
Sincerely,
{Corresponding Author}
Format Conversion
Markdown to LaTeX
pandoc manuscript.md -o manuscript.tex --template=journal-template.tex --bibliography=refs.bib --citeproc
Word to LaTeX
pandoc manuscript.docx -o manuscript.tex --extract-media=figures/
LaTeX to Word (for journals requiring .docx)
pandoc manuscript.tex -o manuscript.docx --bibliography=refs.bib --citeproc
Additional Resources
- Reference: references/journal-requirements.md - Detailed requirements for major journals
- Reference: references/latex-troubleshooting.md - Common LaTeX issues and fixes
1---2name: manuscript-formatting3description: Use this skill for "format manuscript", "prepare for submission", "journal formatting", "LaTeX template", "submission checklist", "format references", "BibTeX", "author guidelines", "page limits", "format for Nature", "format for IEEE", or when the user wants to format a manuscript for journal submission.4---56# Manuscript Formatting and Submission Preparation78Format manuscripts to meet journal-specific requirements and prepare submission packages.910## When to Use1112- Formatting a manuscript for a specific journal13- Preparing a submission package (cover letter, figures, supplementary)14- Converting between formats (Word to LaTeX, markdown to LaTeX)15- Checking compliance with author guidelines16- Managing references and BibTeX1718## Common Journal Formats1920### IEEE21- **Template:** IEEEtran class22- **Columns:** Two-column23- **References:** Numbered, [1] style24- **Figures:** Fit within column or span both columns25- **Page limit:** Varies (typically 6-8 for conference, 12-14 for journal)2627```latex28\documentclass[journal]{IEEEtran}29\usepackage{cite}30\usepackage{amsmath}31\usepackage{graphicx}32```3334### Nature/Science35- **Format:** Single column, specific heading hierarchy36- **References:** Superscript numbered37- **Word limit:** ~3000-5000 words (main text)38- **Figures:** Max 6-8, submitted as separate files39- **Methods:** Often separate section with no word limit4041### PNAS42- **Template:** pnas-new class43- **Columns:** Two-column in print, single for review44- **Word limit:** ~4500 words45- **References:** Numbered46- **Significance statement:** Required, 120 words max4748### PLoS ONE49- **Format:** No specific template required50- **References:** Numbered, Vancouver style51- **No length restriction**52- **Data availability:** Statement required5354### Elsevier55- **Template:** elsarticle class56- **Multiple formats:** preprint, review, final57```latex58\documentclass[preprint,12pt]{elsarticle}59```6061## LaTeX Essentials6263### Document Structure64```latex65\documentclass[options]{class}66\usepackage{packages}6768\title{Title}69\author{Authors}7071\begin{document}72\maketitle73\begin{abstract}74\end{abstract}7576\section{Introduction}77\section{Methods}78\section{Results}79\section{Discussion}8081\bibliography{references}82\end{document}83```8485### BibTeX Management8687```bibtex88@article{smith2024,89 author = {Smith, John and Doe, Jane},90 title = {Title of the Paper},91 journal = {Journal Name},92 year = {2024},93 volume = {10},94 pages = {1--15},95 doi = {10.1000/example}96}97```9899Common BibTeX styles:100- `plain` - numbered, sorted alphabetically101- `unsrt` - numbered, order of citation102- `ieeetr` - IEEE transactions style103- `apalike` - APA-like author-year104105### Cross-references106```latex107\label{fig:results} % Label a figure108\ref{fig:results} % Reference by number109Figure~\ref{fig:results} % Standard format110```111112## Submission Checklist113114### Before Submission115- [ ] Manuscript formatted per journal template116- [ ] Title page: title, authors, affiliations, corresponding author, ORCID117- [ ] Abstract within word limit118- [ ] Keywords provided (if required)119- [ ] Main text within page/word limit120- [ ] Figures as separate high-resolution files (typically 300+ DPI)121- [ ] Figure captions in a separate list122- [ ] Tables formatted per journal style123- [ ] References complete and consistently formatted124- [ ] Supplementary materials prepared separately125- [ ] Cover letter drafted (run `manuscript:humanizer` on it; cover letters are particularly prone to AI-tell phrasing)126- [ ] `manuscript:humanizer` natural-writing pass applied to all narrative sections, *then* journal house style (title case, citation format, etc.) re-applied where it overrides humanizer defaults127- [ ] Conflict of interest statement128- [ ] Data availability statement129- [ ] Ethics approval statement (if applicable)130- [ ] Author contributions (CRediT format if required)131- [ ] Suggested reviewers (if required)132133### Cover Letter Template134135```136Dear Editor,137138We submit our manuscript titled "{TITLE}" for consideration139in {JOURNAL}.140141{1-2 sentences: what the study did and found}142143{1-2 sentences: why this matters to the journal's readership}144145{1 sentence: confirmation of originality and no concurrent submission}146147We suggest the following reviewers:1481. {Name, Affiliation, Email}1492. {Name, Affiliation, Email}150151Sincerely,152{Corresponding Author}153```154155## Format Conversion156157### Markdown to LaTeX158```bash159pandoc manuscript.md -o manuscript.tex --template=journal-template.tex --bibliography=refs.bib --citeproc160```161162### Word to LaTeX163```bash164pandoc manuscript.docx -o manuscript.tex --extract-media=figures/165```166167### LaTeX to Word (for journals requiring .docx)168```bash169pandoc manuscript.tex -o manuscript.docx --bibliography=refs.bib --citeproc170```171172## Additional Resources173174- Reference: [references/journal-requirements.md](references/journal-requirements.md) - Detailed requirements for major journals175- Reference: [references/latex-troubleshooting.md](references/latex-troubleshooting.md) - Common LaTeX issues and fixes