NeurIPS 2026 · Style File

neurips_2026.sty — Official NeurIPS 2026 Style File

The LaTeX style file every NeurIPS 2026 submission needs. Free download, pre-loaded in our template, and Overleaf-ready.

What is neurips_2026.sty?

neurips_2026.sty is the official LaTeX style file for the 2026 Neural Information Processing Systems conference. It controls every aspect of how a NeurIPS paper is typeset: page geometry, fonts, section headings, the bibliography style, and the all-important \ack environment that hides acknowledgments during anonymous review.

You can't submit to NeurIPS without it. The conference review system rejects papers that don't conform to the official style, and the easiest way to conform is to drop neurips_2026.sty into your project and \usepackage{neurips_2026}.

Quick usage

\documentclass{article}

% For anonymous submission (default):
\usepackage{neurips_2026}

% For camera-ready (final) version:
% \usepackage[final]{neurips_2026}

\title{Your Paper Title}
\author{%
  Author One \\
  Affiliation \\
  \texttt{author@domain} \And
  Author Two \\
  Affiliation \\
  \texttt{author2@domain}
}

\begin{document}
\maketitle
\begin{abstract}
  Your abstract.
\end{abstract}

% ... your paper ...

\begin{ack}
  This work was supported by ...
\end{ack}

\bibliographystyle{plainnat}
\bibliography{references}
\end{document}

Submission mode vs final mode

The single most important thing neurips_2026.sty does is switch between two modes:

  • Submission mode (default, \usepackage{neurips_2026}) hides author names, affiliations, and the entire \ack block so the paper is anonymized for double-blind review.
  • Final mode (\usepackage[final]{neurips_2026}) shows authors and acknowledgments — for the camera-ready version after your paper is accepted.

If reviewers see your name in submission mode, your paper can be desk-rejected for de-anonymization. The style file handles this for you — don't hardcode author visibility.

What about the bibliography style?

neurips_2026.sty sets up a bundled .bst file that produces the NeurIPS-specific numbered citation format. You can use it directly with \bibliography{refs} or override with \bibliographystyle{plainnat} if you prefer natbib.

Frequently asked questions

Where do I download neurips_2026.sty?

The official source is the NeurIPS 2026 author kit hosted at media.neurips.cc/Conferences/NeurIPS2026/Styles. TypeTeX bundles the latest neurips_2026.sty inside our NeurIPS 2026 template — open the template and the file is already on your project's path. You can also export the project to Overleaf, GitHub, or download as a .zip with neurips_2026.sty included.

What is inside neurips_2026.sty?

neurips_2026.sty defines the page geometry (8.5x11, single-column for review, double for camera-ready), font setup (Times Roman 10pt body), section heading style, the \ack acknowledgments environment, the anonymous-author macros, and a custom bibliography style. It also configures \if@neuripsfinal which switches between submission (anonymous) and final (camera-ready) modes.

How do I use neurips_2026.sty in my LaTeX paper?

Add \usepackage{neurips_2026} for the anonymous review version, or \usepackage[final]{neurips_2026} for the camera-ready (de-anonymized) version. Make sure neurips_2026.sty is in the same directory as your main.tex or somewhere on TEXINPUTS.

Why does \providespackage{neurips_2026} matter?

neurips_2026.sty starts with \ProvidesPackage{neurips_2026}[2026/05/01 v1.0 NeurIPS 2026 author kit]. Some search results and grep snippets show \providespackage (lowercase) — that's just a casing artifact in indexed text. The real macro is \ProvidesPackage and it identifies the package version so duplicate \usepackage calls don't break compilation.

Does neurips_2026.sty work with natbib?

Yes. Add \usepackage{natbib} after \usepackage{neurips_2026}. The default bibliography style configured by neurips_2026.sty is compatible with both \bibliographystyle{plainnat} and the bundled NeurIPS-specific .bst file. Use \citep{} for parenthetical citations and \citet{} for inline.

Where does the .sty file go in Overleaf?

Drop neurips_2026.sty into the root of your Overleaf project (same level as main.tex). Overleaf finds it automatically — no configuration needed. If you import the TypeTeX NeurIPS template into Overleaf, neurips_2026.sty is already in place.

Related NeurIPS 2026 resources