主题
B - 论文模板
各会议/期刊的 LaTeX 模板
顶会模板
NeurIPS
latex
\documentclass{article}
\usepackage{neurips_2025}
\title{Your Paper Title}
\author{
Author One \\
Department \\
\texttt{email@example.com} \\
\And
Author Two \\
Department \\
\texttt{email2@example.com} \\
}
\begin{document}
\maketitle
\begin{abstract}
Your abstract here.
\end{abstract}
\section{Introduction}
...
\bibliographystyle{plain}
\bibliography{references}
\end{document}下载模板:https://neurips.cc/Conferences/2025/PaperInformation/StyleFiles
ICLR
ICLR 使用 OpenReview 格式:
latex
\documentclass{article}
\usepackage{iclr2025_conference}
\title{Your Paper Title}
\author{Author Names}
\newcommand{\affil}{}
\newcommand{\it corr}{}
\begin{document}
\maketitle
\begin{abstract}
Your abstract here.
\end{abstract}
\section{Introduction}
...
\bibliography{references}
\end{document}ICML
latex
\documentclass{article}
\usepackage{icml2025}
\icmltitlerunning{Short Title}
\icmlauthorrunning{Author et al.}
\title{Your Paper Title}
\author{Author Names}
\begin{document}
\twocolumn[
\icmltitle{Your Paper Title}
\icmlauthor{Author Names}
\icmladdress{Institution}
]
\begin{abstract}
Your abstract here.
\end{abstract}
\icmlkeywords{keyword1, keyword2}
\section{Introduction}
...
\bibliography{references}
\end{document}ACL / EMNLP
使用 ACL 官方模板:
latex
\documentclass[11pt]{article}
\usepackage{acl}
\title{Your Paper Title}
\author{Author Names \\
Institution \\
\texttt{email@example.com}}
\begin{document}
\maketitle
\begin{abstract}
Your abstract here.
\end{abstract}
\section{Introduction}
...
\bibliography{references}
\end{document}CVPR / ICCV
latex
\documentclass[10pt,twocolumn,letterpaper]{article}
\usepackage{cvpr}
\cvprfinalcopy
\title{Your Paper Title}
\author{Author Names\\
Institution\\
\texttt{email@example.com}}
\begin{document}
\maketitle
\begin{abstract}
Your abstract here.
\end{abstract}
\section{Introduction}
...
\bibliography{references}
\end{document}通用模板
简单论文模板
latex
\documentclass[11pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath,amssymb}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{hyperref}
\title{Your Paper Title}
\author{Author Names}
\date{}
\begin{document}
\maketitle
\begin{abstract}
Your abstract here.
\end{abstract}
\section{Introduction}
\label{sec:intro}
Your introduction here.
\section{Method}
\label{sec:method}
Your method here.
\section{Experiments}
\label{sec:experiments}
Your experiments here.
\section{Conclusion}
\label{sec:conclusion}
Your conclusion here.
\bibliographystyle{plain}
\bibliography{references}
\end{document}双栏模板
latex
\documentclass[10pt,twocolumn]{article}
\usepackage[margin=0.75in]{geometry}
\usepackage{amsmath,amssymb}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{hyperref}
\title{Your Paper Title}
\author{Author Names}
\date{}
\begin{document}
\maketitle
\begin{abstract}
Your abstract here.
\end{abstract}
\section{Introduction}
...
\bibliography{references}
\end{document}常用 Preamble
latex
% preamble.tex
% 页面设置
\usepackage[margin=1in]{geometry}
% 数学
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
% 图片
\usepackage{graphicx}
\usepackage{subcaption}
% 表格
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{adjustbox}
% 算法
\usepackage{algorithm}
\usepackage{algorithmic}
% 代码
\usepackage{listings}
% 绘图
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,positioning}
% 链接
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
citecolor=blue,
urlcolor=blue
}
% 自定义命令
\newcommand{\R}{\mathbb{R}}
\newcommand{\E}{\mathbb{E}}
\newcommand{\argmax}{\operatorname{argmax}}
\newcommand{\argmin}{\operatorname{argmin}}BibTeX 示例
bibtex
% references.bib
@article{vaswani2017attention,
title={Attention is all you need},
author={Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and others},
journal={Advances in Neural Information Processing Systems},
year={2017}
}
@inproceedings{devlin2019bert,
title={BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding},
author={Devlin, Jacob and Chang, Ming-Wei and Lee, Kenton and Toutanova, Kristina},
booktitle={NAACL-HLT},
year={2019}
}
@misc{brown2020language,
title={Language Models are Few-Shot Learners},
author={Brown, Tom and Mann, Benjamin and Ryder, Nick and others},
year={2020},
eprint={2005.14165},
archivePrefix={arXiv}
}检查清单
| 检查项 | 状态 |
|---|---|
| 使用正确模板? | ✅ |
| 页数符合要求? | ✅ |
| 格式符合要求? | ✅ |
| 参考文献格式正确? | ✅ |
提示:每个会议的模板可能每年更新,投稿前检查官网获取最新版本。