agentsclimarketplace

Arxiv preprint template

Skill dongzhigang13305312738-art/paper-skills/arxiv-preprint-template

📝 124 个 SCI/SSCI 论文写作 AI 技能合集:选题→文献综述→实验→图表→写作→润色→去AI痕迹→投稿,一个 paper-studio 总入口全流程调度。支持 Claude Code / WorkBuddy。

Install
npx -y skills add dongzhigang13305312738-art/paper-skills --skill arxiv-preprint-template

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 15 days oldThe repository was created 15 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

LaTeX template for arXiv preprints in NIPS/NeurIPS style format

SKILL.md

4.1 KB, as published. Nobody here has run it

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

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

\documentclass{article}
\usepackage{arxiv}

\title{Your Paper Title: A Descriptive Subtitle}

\author{
  First Author\thanks{Equal contribution.} \\
  Department of Computer Science\\
  University Name\\
  \texttt{[email protected]} \\
  \And
  Second Author \\
  Research Lab\\
  Institution Name\\
  \texttt{[email protected]}
}

\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

% 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

% 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

# 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

% 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

TemplateBest for
arxiv-styleGeneral ML/CS preprints
NeurIPS templateNeurIPS submissions
ICML templateICML submissions
ElegantPaperWorking papers/tech reports

References

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.