academic-paper-helperlisted
Install: claude install-skill cnfjlhj/ai-collab-playbook
# 学术论文写作助手
## 功能概述
专为 AI/ML 博士生设计的学术写作助手,提供端到端的论文写作支持。
## 核心功能
### 1. LaTeX 论文框架生成
**使用场景**:创建新论文时
**模板类型**:
- **NeurIPS**:神经信息处理系统会议
- **ICML**:国际机器学习会议
- **ICLR**:国际学习表征会议
- **AAAI**:人工智能促进协会
- **CVPR**:计算机视觉与模式识别
- **ACL**:计算语言学协会
- **EMNLP**:自然语言处理经验方法会议
**生成内容**:
```latex
\documentclass{article}
% 会议特定包
\usepackage[final]{neurips_2024} % 或其他会议
% 标准学术包
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithm,algorithmic}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{hyperref}
\title{Your Paper Title}
\author{
Your Name \\
Department \\
University \\
\texttt{email@university.edu}
}
\begin{document}
\maketitle
\begin{abstract}
Your abstract here.
\end{abstract}
\section{Introduction}
% Your content
\section{Related Work}
% Your content
\section{Method}
% Your content
\section{Experiments}
% Your content
\section{Conclusion}
% Your content
\bibliographystyle{plain}
\bibliography{references}
\end{document}
```
### 2. BibTeX 条目管理
**使用场景**:管理论文引用
**功能**:
- 从论文信息自动生成 BibTeX 条目
- 格式化作者名字(全名、首字母大写)
- 标题大小写规范(Chicago style)
- 自动添加 DOI
**示例**:
输入混乱的论文信息:
```
attention is all you need
vaswani et al
2017
neurips
```
输出规范的 BibTeX:
```bibtex
@inproceedings{vaswani2017attention,
title={Attention Is All You Need},
author={Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N. and Kaiser, {\L}ukasz and Polosukhin, Illia},
booktitle={Advances in Neural Information Processing Systems}