icml2026.sty — Official ICML Style File
The LaTeX style file every ICML 2026 submission needs. Free download, pre-loaded in our template, Overleaf-ready.
Quick usage
\documentclass{article}
% For anonymous submission (default):
\usepackage{icml2026}
% For accepted/camera-ready:
% \usepackage[accepted]{icml2026}
\icmltitlerunning{Short Running Title}
\begin{document}
\twocolumn[
\icmltitle{Your ICML 2026 Paper Title}
\icmlsetsymbol{equal}{*}
\begin{icmlauthorlist}
\icmlauthor{First Author}{equal,uni}
\icmlauthor{Second Author}{equal,uni}
\end{icmlauthorlist}
\icmlaffiliation{uni}{Department, University, Country}
\icmlcorrespondingauthor{First Author}{first@author.com}
\icmlkeywords{ML, ICML}
\vskip 0.3in
]
\printAffiliationsAndNotice{\icmlEqualContribution}
\begin{abstract}
Your abstract here.
\end{abstract}
% ... your paper ...
\bibliographystyle{icml2026}
\bibliography{references}
\end{document}What icml2026.sty configures
- Two-column layout with ICML-specific margins (8.5x11 letter, ~1.05in margins)
- Times-style font for body text and matched math
- Anonymous author block in submission mode (de-anonymized in [accepted] mode)
- The
\icmltitle,\icmlauthorlist,\icmlaffiliationmacros for proper title block - Natbib-based citation style with author-year format
- Section heading style and numbering
Submission mode vs accepted mode
Anonymous submission: \usepackage{icml2026} hides author names and affiliations. The title appears, but author info is replaced with placeholder text. This is required for ICML's double-blind review.
Accepted/camera-ready: \usepackage[accepted]{icml2026} reveals authors and affiliations and adds the published-paper title block formatting.
Related ICML resources
Frequently Asked Questions
The official source is the ICML 2026 author kit on the icml.cc website (Calls → Author Information). TypeTeX bundles the latest icml2026.sty inside our ICML 2026 template — open the template and the .sty file is already on your project's path.
Add \usepackage{icml2026} for the anonymous review version, or \usepackage[accepted]{icml2026} for the camera-ready (de-anonymized) version. Make sure icml2026.sty is in the same directory as your main.tex.
It switches the style file from anonymous review mode to camera-ready mode. Author names become visible, the title block changes to the published format, and the page header may include the conference name. Default is anonymous mode for double-blind submission.
ICML enforces 8 content pages for the main paper, plus unlimited references. icml2026.sty configures the page geometry but does not hard-stop you at 8 pages — you have to monitor it manually. The TypeTeX template includes a live page counter to help.
Yes — it loads natbib with an ICML-specific .bst file that produces the (Author, Year) format common at ICML. Use \citep{key} for parenthetical and \citet{key} for inline citations.
Yes. Drop icml2026.sty in the root of your Overleaf project alongside main.tex. Overleaf finds it automatically. The TypeTeX ICML template exports directly to Overleaf with the .sty already in place.
Each year ICML updates the style file slightly — usually to bump the year in the page header, adjust the abstract format, or refine the bibliography style. The macro structure (\usepackage{icml2026}, the [accepted] flag, anonymous mode) stays consistent year to year.