skills/research/research-paper-writing/templates/aaai2026/README.md
📝 重要说明 / Important Notice: 本仓库借助Cursor在AAAI 2026官方模板基础上改进得到。如果遇到不满足或有冲突的情况,请积极提issues。
📝 Important Notice: This repository is improved based on the official AAAI 2026 template with the assistance of Cursor. If you encounter any issues or conflicts, please actively submit issues.
📖 在线阅读和测试模板: https://cn.overleaf.com/read/wyhcnvcrtpyt#cd4a07
📖 Online View and Test Template: https://cn.overleaf.com/read/wyhcnvcrtpyt#cd4a07
💡 提示 / Tips:
我已经将AAAI 2026的两个版本(匿名投稿版本和camera-ready版本)完整合并成一个统一的模板文件 aaai2026-unified-template.tex。
该模板包含了原始两个模板的所有完整内容(共886行,比原始文件更全面),包括:
通过比较原始的两个模板,我发现主要差异在于:
\usepackage[submission]{aaai2026}\usepackage{aaai2026}✅ 已验证并复制到主目录的文件:
aaai2026.sty - AAAI 2026 样式文件(两个版本完全相同)aaai2026.bst - 参考文献样式文件(两个版本完全相同)aaai2026.bib - 示例参考文献文件figure1.pdf 和 figure2.pdf - 示例图片文件所有这些文件在两个版本中都是相同的,因此统一模板可以正常工作。
在模板文件第11行,取消注释这一行:
\def\aaaianonymous{true}
在模板文件第11行,注释掉或删除这一行:
% \def\aaaianonymous{true}
统一模板使用了LaTeX的条件编译功能:
% 条件包加载
\ifdefined\aaaianonymous
\usepackage[submission]{aaai2026} % 匿名版本
\else
\usepackage{aaai2026} % Camera-ready版本
\fi
% 条件标题设置
\ifdefined\aaaianonymous
\title{AAAI Press Anonymous Submission\\Instructions for Authors Using \LaTeX{}}
\else
\title{AAAI Press Formatting Instructions \\for Authors Using \LaTeX{} --- A Guide}
\fi
% 条件内容显示
\ifdefined\aaaianonymous
% 匿名版本特有内容
\else
% Camera-ready版本特有内容
\fi
主目录现在包含以下文件:
aaai2026-unified-template.tex - 统一主论文模板文件aaai2026-unified-supp.tex - 统一补充材料模板文件aaai2026.sty - AAAI 2026 LaTeX 样式文件aaai2026.bst - 参考文献样式文件aaai2026.bib - 示例参考文献文件figure1.pdf - 示例图片1figure2.pdf - 示例图片2README.md - 本说明文档aaai2026-unified-supp.tex 是专门为AAAI 2026补充材料设计的统一模板,与主论文模板使用相同的版本切换机制。
与主论文模板相同,只需修改第11行:
% 匿名投稿版本
\def\aaaianonymous{true}
% Camera-ready版本
% \def\aaaianonymous{true}
版本设置:
\def\aaaianonymous{true} (匿名投稿)内容完整性:
格式检查:
技术检查:
版本切换:
\def\aaaianonymous{true} (camera-ready)内容更新:
最终检查:
内容组织:
技术细节:
格式要求:
投稿阶段:
\def\aaaianonymous{true}录用后准备final版本:
\def\aaaianonymous{true} 这一行编译测试:
依赖文件确认:
⚠️ 关于Bibliography Style:
aaai2026.sty文件已经自动设置了\bibliographystyle{aaai2026}\bibliographystyle{aaai2026}命令Illegal, another \bibstyle command"错误\bibliography{aaai2026}命令即可# 编译LaTeX文档
pdflatex aaai2026-unified-template.tex
bibtex aaai2026-unified-template
pdflatex aaai2026-unified-template.tex
pdflatex aaai2026-unified-template.tex
原因: 重复设置了bibliography style
解决方案: 删除文档中的\bibliographystyle{aaai2026}命令,aaai2026.sty会自动处理
原因: 可能缺少natbib包或者BibTeX文件问题
解决方案: 确保按照标准的LaTeX编译流程:pdflatex → bibtex → pdflatex → pdflatex
I have completely merged the two AAAI 2026 versions (anonymous submission and camera-ready) into a single unified template file aaai2026-unified-template.tex.
This template contains all complete content from both original templates (886 lines total, more comprehensive than the original files), including:
By comparing the two original templates, the main differences are:
\usepackage[submission]{aaai2026}\usepackage{aaai2026}✅ Files verified and copied to main directory:
aaai2026.sty - AAAI 2026 style file (identical in both versions)aaai2026.bst - Bibliography style file (identical in both versions)aaai2026.bib - Sample bibliography filefigure1.pdf and figure2.pdf - Sample image filesAll these files are identical in both versions, so the unified template works properly.
On line 11 of the template file, uncomment this line:
\def\aaaianonymous{true}
On line 11 of the template file, comment out or delete this line:
% \def\aaaianonymous{true}
The unified template uses LaTeX conditional compilation:
% Conditional package loading
\ifdefined\aaaianonymous
\usepackage[submission]{aaai2026} % Anonymous version
\else
\usepackage{aaai2026} % Camera-ready version
\fi
% Conditional title setting
\ifdefined\aaaianonymous
\title{AAAI Press Anonymous Submission\\Instructions for Authors Using \LaTeX{}}
\else
\title{AAAI Press Formatting Instructions \\for Authors Using \LaTeX{} --- A Guide}
\fi
% Conditional content display
\ifdefined\aaaianonymous
% Anonymous version specific content
\else
% Camera-ready version specific content
\fi
The main directory now contains the following files:
aaai2026-unified-template.tex - Unified main paper template fileaaai2026-unified-supp.tex - Unified supplementary material template fileaaai2026.sty - AAAI 2026 LaTeX style fileaaai2026.bst - Bibliography style fileaaai2026.bib - Sample bibliography filefigure1.pdf - Sample image 1figure2.pdf - Sample image 2README.md - This documentationaaai2026-unified-supp.tex is a unified template specifically designed for AAAI 2026 supplementary materials, using the same version switching mechanism as the main paper template.
Same as the main paper template, just modify line 11:
% Anonymous submission version
\def\aaaianonymous{true}
% Camera-ready version
% \def\aaaianonymous{true}
Version Setup:
\def\aaaianonymous{true} (anonymous submission)Content Completeness:
Format Check:
Technical Check:
Version Switch:
\def\aaaianonymous{true} (camera-ready)Content Updates:
Final Check:
Content Organization:
Technical Details:
Format Requirements:
Submission Stage:
\def\aaaianonymous{true}Preparing final version after acceptance:
\def\aaaianonymous{true} lineCompilation Testing:
Dependency File Confirmation:
⚠️ About Bibliography Style:
aaai2026.sty file automatically sets \bibliographystyle{aaai2026}\bibliographystyle{aaai2026} command again in your documentIllegal, another \bibstyle command" error\bibliography{aaai2026} command# Compile LaTeX document
pdflatex aaai2026-unified-template.tex
bibtex aaai2026-unified-template
pdflatex aaai2026-unified-template.tex
pdflatex aaai2026-unified-template.tex
Cause: Duplicate bibliography style setting
Solution: Remove the \bibliographystyle{aaai2026} command from your document, aaai2026.sty handles it automatically
Cause: Missing natbib package or BibTeX file issues
Solution: Follow the standard LaTeX compilation process: pdflatex → bibtex → pdflatex → pdflatex
🎉 现在您只需要修改一行代码就可以在两个版本之间切换,同时所有必要的依赖文件都已经准备就绪!
🎉 Now you only need to modify one line of code to switch between the two versions, with all necessary dependency files ready to use!