arxiv-preprint-templatelisted
Install: claude install-skill dongzhigang13305312738-art/paper-skills
# 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