dasayan05 / typst-ai-conf-templates

AI conference templates in Typst

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AI conference templates in Typst

🔨 Work-in-progress (WIP) 🔨

✨ Contributions are welcome ✨


Please note that Typst is in it's early stage and not yet as feature-rich as LaTeX, hence it may still take some time for these templates to be usable in practice.

Templates for AI conferences (or many other conference) are historically written only in LaTeX, which is old and hard to use. Typst is a modern typesetting system with a much more familiar programming model. As the community grows, we may want to use Typst for writing papers in the conferences. Please note that this is an individual effort to port the templates, but not "officially" supported by the conferences. Also, this repo is still work in progress and might not yet match the exact specification (e.g. margin, styling) of the conference.

The goal of this project is roughly

  1. Port AI conference templates in Typst
  2. Make them look and feel similar to their LaTeX versions
  3. Follow the exact specifications provided by the conference

List of conferences

  • NeurIPS
  • ICML
  • ICLR
  • CVPR
  • ICCV
  • ECCV
  • (more to come)

Interface

The idea is to have a (roughly) fixed #show: ... rule for each conference. Putting the following at the beginning of the paper will act as a "template" ..

// Replace <conf> with the conference name
// #import "<conf>.typ": manuscript

#import "neurips.typ": manuscript

#show: manuscript.with(
    title: [Formatting Instructions For NeurIPS 2023],
    authors: (
        [
            *Author 1*\
            Affiliation 1\
            Address 1\
            ...
        ],
        [
            *Author 2*\
            Affiliation\
            Address\
            ...
        ],
        ...
    ),
    abstract: [
        The abstract paragraph should be indented $1/2$~inch (3~picas) ..
    ]
)

Example Outputs

  • NeurIPS

  • CVPR

About

AI conference templates in Typst

License:MIT License