From manuscript
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/manuscript:manuscript-formattingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Format manuscripts to meet journal-specific requirements and prepare submission packages.
Format manuscripts to meet journal-specific requirements and prepare submission packages.
\documentclass[journal]{IEEEtran}
\usepackage{cite}
\usepackage{amsmath}
\usepackage{graphicx}
\documentclass[preprint,12pt]{elsarticle}
\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}
@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 alphabeticallyunsrt - numbered, order of citationieeetr - IEEE transactions styleapalike - APA-like author-year\label{fig:results} % Label a figure
\ref{fig:results} % Reference by number
Figure~\ref{fig:results} % Standard format
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}
pandoc manuscript.md -o manuscript.tex --template=journal-template.tex --bibliography=refs.bib --citeproc
pandoc manuscript.docx -o manuscript.tex --extract-media=figures/
pandoc manuscript.tex -o manuscript.docx --bibliography=refs.bib --citeproc
npx claudepluginhub neuromechanist/research-skills --plugin manuscriptConverts academic LaTeX papers between publisher formats (e.g., Springer to MDPI, IEEE, Nature) by extracting content, injecting into new templates, fixing formatting, and compiling.
Provides LaTeX templates, formatting requirements, and submission guidelines for scientific journals (Nature, Science, PLOS, IEEE, ACM), conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA).
Template-based LaTeX/Word typesetting for journals, conferences, schools, and competitions. Handles title hierarchy, margins, TOC, abstract, keywords, equations, figures, algorithms, references, headers, footers, page numbers, single/double columns, numbering, cross-references, and compilation.