arxiv-preprint-template

LaTeX template for arXiv preprints in NIPS/NeurIPS style format

180 stars

Best use case

arxiv-preprint-template is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

LaTeX template for arXiv preprints in NIPS/NeurIPS style format

Teams using arxiv-preprint-template should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/arxiv-preprint-template/SKILL.md --create-dirs "https://raw.githubusercontent.com/wentorai/research-plugins/main/skills/writing/templates/arxiv-preprint-template/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/arxiv-preprint-template/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How arxiv-preprint-template Compares

Feature / Agentarxiv-preprint-templateStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

LaTeX template for arXiv preprints in NIPS/NeurIPS style format

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# arXiv Preprint Template

## Overview

A clean, minimal LaTeX template for arXiv preprints based on the NIPS/NeurIPS conference style. Provides professional formatting for CS/ML papers without the overhead of full conference submission templates. Includes proper bibliography, math support, and single/double column layouts.

## Quick Start

```bash
git clone https://github.com/kourgeorge/arxiv-style.git
cd arxiv-style
# Edit main.tex, compile:
pdflatex main && bibtex main && pdflatex main && pdflatex main
```

## Template Structure

```latex
\documentclass{article}
\usepackage{arxiv}

\title{Your Paper Title: A Descriptive Subtitle}

\author{
  First Author\thanks{Equal contribution.} \\
  Department of Computer Science\\
  University Name\\
  \texttt{first@university.edu} \\
  \And
  Second Author \\
  Research Lab\\
  Institution Name\\
  \texttt{second@institution.org}
}

\begin{document}
\maketitle

\begin{abstract}
  Your abstract here. Keep it under 200 words for arXiv.
  State the problem, approach, key results, and implications.
\end{abstract}

\keywords{keyword1, keyword2, keyword3}

\section{Introduction}
% Background, motivation, contribution summary

\section{Related Work}
% Position relative to existing literature

\section{Method}
% Technical approach, algorithms, models

\section{Experiments}
% Setup, datasets, baselines, results

\section{Conclusion}
% Summary, limitations, future work

\bibliographystyle{unsrtnat}
\bibliography{references}

\appendix
\section{Supplementary Material}
% Proofs, additional results, hyperparameters

\end{document}
```

## Key Features

### Math Support

```latex
% Theorem environments
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}

\begin{theorem}
For any $\epsilon > 0$, there exists $\delta > 0$ such that...
\end{theorem}

% Algorithm
\usepackage{algorithm}
\usepackage{algorithmic}

\begin{algorithm}
\caption{Training procedure}
\begin{algorithmic}[1]
\REQUIRE Dataset $\mathcal{D}$, learning rate $\eta$
\FOR{$t = 1$ to $T$}
  \STATE Sample batch $B \sim \mathcal{D}$
  \STATE $\theta \leftarrow \theta - \eta \nabla_\theta \mathcal{L}(B)$
\ENDFOR
\RETURN $\theta$
\end{algorithmic}
\end{algorithm}
```

### Tables and Figures

```latex
% Results table
\begin{table}[t]
\centering
\caption{Comparison with baselines on benchmark datasets.}
\begin{tabular}{lccc}
\toprule
Method & Accuracy & F1 & Time (s) \\
\midrule
Baseline & 85.2 & 83.1 & 12.4 \\
Ours & \textbf{91.7} & \textbf{90.3} & 8.2 \\
\bottomrule
\end{tabular}
\end{table}

% Figure
\begin{figure}[t]
\centering
\includegraphics[width=0.8\columnwidth]{figures/architecture.pdf}
\caption{Model architecture overview.}
\end{figure}
```

### arXiv Submission Tips

```bash
# Prepare submission package
# 1. Include all .tex, .bib, .bbl files
# 2. Include all figures (PDF preferred over PNG)
# 3. Include arxiv.sty
# 4. Do NOT include .aux, .log, .out files

# Create submission archive
tar -czf submission.tar.gz \
  main.tex arxiv.sty references.bbl figures/
```

## Customization

```latex
% Single column (default)
\documentclass{article}

% Two column layout
\documentclass[twocolumn]{article}

% Line numbers (for review)
\usepackage{lineno}
\linenumbers

% Hyperlinks (recommended)
\usepackage{hyperref}
\hypersetup{colorlinks=true, linkcolor=blue, citecolor=blue}
```

## Related Templates

| Template | Best for |
|----------|----------|
| arxiv-style | General ML/CS preprints |
| NeurIPS template | NeurIPS submissions |
| ICML template | ICML submissions |
| ElegantPaper | Working papers/tech reports |

## References

- [arxiv-style GitHub](https://github.com/kourgeorge/arxiv-style)
- [arXiv Submission Guide](https://info.arxiv.org/help/submit/index.html)
- [arXiv LaTeX Cleaner](https://github.com/google-research/arxiv-latex-cleaner)

Related Skills

thesis-template-guide

191
from wentorai/research-plugins

Set up LaTeX templates for PhD and Master's thesis documents

elegant-paper-template

191
from wentorai/research-plugins

Beautiful LaTeX template for working papers and technical reports

conference-paper-template

191
from wentorai/research-plugins

Templates and formatting guides for major academic conference submissions

latex-templates-collection

191
from wentorai/research-plugins

Collection of LaTeX templates for papers, presentations, and CVs

arxiv-paper-processor

191
from wentorai/research-plugins

Process and analyze arXiv papers systematically for research workflows

arxiv-cli-tools

191
from wentorai/research-plugins

Command-line tools for searching and batch-downloading arXiv papers

arxiv-batch-reporting

191
from wentorai/research-plugins

Batch search and report generation from arXiv preprint repository

arxiv-api

191
from wentorai/research-plugins

Search and retrieve preprints from the arXiv open-access repository

preprint-servers-guide

191
from wentorai/research-plugins

Guide to preprint servers across scientific disciplines

arxiv-latex-source

191
from wentorai/research-plugins

Download and parse LaTeX source files from arXiv preprints

zotero-arxiv-daily-guide

191
from wentorai/research-plugins

Guide to Zotero arXiv Daily for personalized daily paper recommendations

templates-skills

180
from wentorai/research-plugins

11 paper templates skills. Trigger: starting a new paper, formatting for submission, venue-specific layouts. Design: ready-to-use templates for arXiv preprint, conferences, thesis, and posters.