Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

机器学习/人工智能会议的LaTeX模板

该目录收录了各大机器学习与人工智能会议的官方LaTeX模板。


将LaTeX编译为PDF

方案1:搭配LaTeX Workshop的VS Code(推荐)

准备工作:

  1. 安装TeX Live(建议安装完整版)

    • macOS系统:brew install --cask mactex
    • Ubuntu系统:sudo apt install texlive-full
    • Windows系统:从tug.org/texlive下载
  2. 安装VS Code扩展:James Yu开发的LaTeX Workshop

    • 打开VS Code → 进入“扩展”选项(Cmd/Ctrl+Shift+X)→ 搜索“LaTeX Workshop”→ 点击安装

使用方法:

  • 在VS Code中打开任意.tex文件
  • 保存文件(Cmd/Ctrl+S)→ 系统会自动将其编译为PDF
  • 点击绿色的播放按钮或使用Cmd/Ctrl+Alt+B来启动编译过程
  • 查看PDF文档:点击“查看LaTeX PDF”图标或使用Cmd/Ctrl+Alt+V
  • 并排查看文档:先按Cmd/Ctrl+Alt+V,再拖动标签页

相关设置(可添加到VS Code的settings.json文件中):

{
  "latex-workshop.latex.autoBuild.run": "onSave",
  "latex-workshop.view.pdf.viewer": "tab",
  "latex-workshop.latex.recipes": [
    {
      "name": "pdflatex → bibtex → pdflatex × 2",
      "tools": ["pdflatex", "bibtex", "pdflatex", "pdflatex"]
    }
  ]
}

方案二:命令行

# Basic compilation
pdflatex main.tex

# With bibliography (full workflow)
pdflatex main.tex
bibtex main
pdflatex main.tex
pdflatex main.tex

# Using latexmk (handles dependencies automatically)
latexmk -pdf main.tex

# Continuous compilation (watches for changes)
latexmk -pdf -pvc main.tex

方案 3:Overleaf(在线版)

  1. 访问 overleaf.com
  2. 选择“新建项目”→“上传项目”→将模板文件夹以 ZIP 格式上传
  3. 可在线编辑,并支持实时 PDF 预览
  4. 无需在本地进行安装

方案 4:其他集成开发环境

IDE扩展/插件备注
CursorLaTeX Workshop功能与 VS Code 相同
Sublime TextLaTeXTools广受欢迎且维护良好
Vim/NeovimVimTeX功能强大,依赖键盘操作
EmacsAUCTeX功能完善的 LaTeX 开发环境
TeXstudio内置插件专用的 LaTeX IDE
Texmaker内置功能跨平台的 LaTeX 编辑器

编译故障排除

“文件未找到”错误:

# Ensure you're in the template directory
cd templates/icml2026
pdflatex example_paper.tex

参考文献未显示:

# Run bibtex after first pdflatex
pdflatex main.tex
bibtex main        # Uses main.aux to find citations
pdflatex main.tex  # Incorporates bibliography
pdflatex main.tex  # Resolves references

缺失的包:

# TeX Live package manager
tlmgr install <package-name>

# Or install full distribution to avoid this

可用模板

会议名称目录路径年份来源
ICMLicml2026/2026ICML官方页面
ICLRiclr2026/2026官方GitHub仓库
NeurIPSneurips2025/2025社区提供的模板
ACLacl/2025年及以后ACL官方页面
AAAIaaai2026/2026AAAI作者工具包
COLMcolm2025/2025COLM官方页面

使用方法

ICML 2026

\documentclass{article}
\usepackage{icml2026}  % For submission
% \usepackage[accepted]{icml2026}  % For camera-ready

\begin{document}
% Your paper content
\end{document}

关键文件:

  • icml2026.sty – 样式文件
  • icml2026.bst – 参考文献格式文件
  • example_paper.tex – 示例文档

ICLR 2026

\documentclass{article}
\usepackage[submission]{iclr2026_conference}  % For submission
% \usepackage[final]{iclr2026_conference}  % For camera-ready

\begin{document}
% Your paper content
\end{document}

关键文件:

  • iclr2026_conference.sty —— 样式文件
  • iclr2026_conference.bst —— 参考文献格式文件
  • iclr2026_conference.tex —— 示例文档

ACL系列会议(ACL、EMNLP、NAACL)

\documentclass[11pt]{article}
\usepackage[review]{acl}  % For review
% \usepackage{acl}  % For camera-ready

\begin{document}
% Your paper content
\end{document}

关键文件:

  • acl.sty —— 样式文件
  • acl_natbib.bst —— 参考文献样式文件
  • acl_latex.tex —— 示例文档

2026年AAAI会议

\documentclass[letterpaper]{article}
\usepackage[submission]{aaai2026}  % For submission
% \usepackage{aaai2026}  % For camera-ready

\begin{document}
% Your paper content
\end{document}

关键文件:

  • aaai2026.sty - 样式文件
  • aaai2026.bst - 参考文献格式文件

COLM 2025

\documentclass{article}
\usepackage[submission]{colm2025_conference}  % For submission
% \usepackage[final]{colm2025_conference}  % For camera-ready

\begin{document}
% Your paper content
\end{document}

关键文件:

  • colm2025_conference.sty – 格式文件
  • colm2025_conference.bst – 参考文献格式文件

页面限制概览

会议名称提交版本录制可用版本备注
ICML 20268页9页参考文献/附录数量不限
ICLR 20269页10页参考文献/附录数量不限
NeurIPS 20259页9页超出限制的部分需填写检查清单
ACL 20258页(长文格式)规则因会议而异参考文献/附录数量不限
AAAI 20267页8页参考文献/附录数量不限
COLM 20259页10页参考文献/附录数量不限

常见问题

编译错误

  1. 缺少软件包:需安装完整的TeX发行版(TeX Live Full或MikTeX)
  2. 参考文献格式错误:请使用提供的.bst文件,并通过\bibliographystyle{}指令进行设置
  3. 字体相关警告:需安装cm-super字体,或使用\usepackage{lmodern}指令

匿名处理

在提交稿件时,请确保:

  • 不在\author{}指令中填写作者姓名
  • 不包含致谢部分
  • 不出现任何资助项目编号 | 使用匿名代码仓库存放稿件 | 以第三人称方式引用自己的研究成果 |

常用LaTeX软件包

% Recommended packages (check compatibility with venue style)
\usepackage{amsmath,amsthm,amssymb}  % Math
\usepackage{graphicx}                 % Figures
\usepackage{booktabs}                 % Tables
\usepackage{hyperref}                 % Links
\usepackage{algorithm,algorithmic}    % Algorithms
\usepackage{natbib}                   % Citations

模板更新

模板会每年进行更新。在提交之前,请务必查阅官方渠道的信息:

  • ICML:https://icml.cc/
  • ICLR:https://iclr.cc/
  • NeurIPS:https://neurips.cc/
  • ACL:https://github.com/acl-org/acl-style-files
  • AAAI:https://aaai.org/
  • COLM:https://colmweb.org/