NeurIPS Template

NeurIPS Papers in Typst

Write ML papers in Typst with instant preview. Anonymous mode, checklist support, export to LaTeX for OpenReview.

NeurIPS Format

Matches official NeurIPS style guidelines exactly.

Anonymous Mode

One-click toggle for blind review submission.

Checklist Support

Built-in NeurIPS reproducibility checklist.

Export to LaTeX

Convert to NeurIPS LaTeX for submission.

How do you convert a NeurIPS LaTeX paper to Typst?

To convert a NeurIPS paper from LaTeX to Typst, replace the neurips_2024 LaTeX document class with the Typst neurips2024 package and let TypeTeX map the rest — sections, citations, math, figures, and bibliography convert automatically. You keep an export-to-LaTeX path, so you can draft in Typst and still submit through OpenReview.

  • Anonymous review is a single option (accepted: false), mirroring the LaTeX [final] toggle.
  • Math like \mathcal{L} and \hat{y} becomes cal(L) and hat(y) automatically.
  • \cite{key} becomes @key; \bibliography becomes bibliography("references.bib").

NeurIPS LaTeX → Typst, side by side

A minimal NeurIPS paper in the official LaTeX style and the equivalent Typst. The converter produces this automatically — here is exactly what changes.

NeurIPS LaTeX (neurips_2024.sty)
\documentclass{article}
\usepackage[final]{neurips_2024}

\title{Attention Is All You Need}

\author{%
  Jane Doe \\
  Dept. of Computer Science \\
  Example University \\
  \texttt{jane@example.edu}
}

\begin{document}
\maketitle

\begin{abstract}
  We propose a simple architecture for
  sequence modeling.
\end{abstract}

\section{Introduction}
Transformers rely on
self-attention~\cite{vaswani2017}.

\begin{equation}
  \mathcal{L} = -\sum_i y_i \log \hat{y}_i
\end{equation}

\bibliographystyle{plainnat}
\bibliography{references}
\end{document}
Typst (neurips2024 package)
#import "@preview/neurips2024:0.1.0": neurips

#show: neurips.with(
  title: [Attention Is All You Need],
  authors: (
    (
      name: "Jane Doe",
      department: "Dept. of Computer Science",
      organization: "Example University",
      email: "jane@example.edu",
    ),
  ),
  accepted: true, // camera-ready; omit for blind review
  abstract: [
    We propose a simple architecture for
    sequence modeling.
  ],
  bibliography: bibliography("references.bib"),
)

= Introduction
Transformers rely on
self-attention @vaswani2017.

$ cal(L) = -sum_i y_i log hat(y)_i $
Same paper, same formatting — Typst compiles in milliseconds with live preview.

Key command mappings

LaTeXTypstWhat it does
\usepackage{neurips_2024}#import "@preview/neurips2024": neuripsLoad the template
[final] / blind optionaccepted: true / falseToggle anonymous review
\section{Intro}= IntroHeadings
\cite{key}@keyCitations
\begin{equation} … \end{equation}$ … $Display math
\mathcal{L}cal(L)Calligraphic
\hat{y}hat(y)Accents
\bibliography{references}bibliography("references.bib")Bibliography
Anonymous Mode for Blind Review

Toggle anonymous mode with one click. Author names and affiliations are automatically hidden for submission, then revealed for camera-ready.

Submission: Anonymous
Camera-ready: Authors shown

Template Includes

Title and anonymous/author modes
Abstract formatting
Main paper body (9 pages)
NeurIPS citation style
Supplementary materials section
Reproducibility checklist
Camera-ready formatting
Ethics statement template

Built-in Reproducibility Checklist

Our template includes the NeurIPS reproducibility checklist. Check items as you complete them:

The Workflow

From draft to OpenReview

1

Start or Import

Use our NeurIPS template or convert your existing LaTeX paper.

2

Write & Preview

Real-time preview with anonymous mode toggle for reviewing.

3

Submit

Export to LaTeX and upload to OpenReview.

Start Your NeurIPS Paper

Use our NeurIPS template or convert your existing LaTeX paper to Typst.

Frequently Asked Questions

How do I convert a NeurIPS LaTeX paper to Typst?

Paste your NeurIPS .tex into the TypeTeX LaTeX-to-Typst converter, or import the Overleaf project. It maps the neurips_2024 document class to the Typst neurips2024 package and converts your sections, citations, math, figures, and bibliography. You can then edit with live preview and export back to LaTeX for OpenReview.

Does the Typst NeurIPS template support anonymous (blind) review?

Yes. The Typst neurips2024 package exposes an option (accepted: false) that hides author names and affiliations for blind submission, mirroring the [final] toggle in the official LaTeX style. Switch it to accepted: true for the camera-ready version.

Can I export the Typst paper back to LaTeX for submission?

Yes. NeurIPS submits through OpenReview, which accepts both LaTeX and PDF. TypeTeX exports a PDF directly and can produce LaTeX source, so you can draft in Typst and still submit in the format the venue expects.

Will my equations and citations survive the conversion?

Common math (subscripts, sums, calligraphic and hatted symbols) and \cite references convert automatically — for example \mathcal{L} becomes cal(L) and \cite{vaswani2017} becomes @vaswani2017. Verify a few equations and the reference list after converting, which the migration checklist walks through.

Other ML Conference Templates