用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill arxiv-preprint-template命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | arxiv-preprint-template |
| description | LaTeX template for arXiv preprints in NIPS/NeurIPS style format |
| metadata | {"openclaw":{"emoji":"📝","category":"writing","subcategory":"templates","keywords":["arXiv","preprint","NIPS style","LaTeX template","NeurIPS","manuscript"],"source":"https://github.com/kourgeorge/arxiv-style"}} |
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.
git clone https://github.com/kourgeorge/arxiv-style.git
cd arxiv-style
# Edit main.tex, compile:
pdflatex main && bibtex main && pdflatex main && pdflatex main
\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}
% 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}
% 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}
# 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/
% 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}
| Template | Best for |
|---|---|
| arxiv-style | General ML/CS preprints |
| NeurIPS template | NeurIPS submissions |
| ICML template | ICML submissions |
| ElegantPaper | Working papers/tech reports |