-
Notifications
You must be signed in to change notification settings - Fork 12
Template Guide
Raghav Kattel edited this page Jun 1, 2026
·
1 revision
Venue templates are LaTeX style files that format papers for specific conferences and journals. Sisyphus Academica supports 5 venues, but all template directories are currently stubs — contributions are welcome.
| Venue | Path | Status |
|---|---|---|
| NeurIPS | templates/neurips/ |
🟢 Template stub |
| ICML | templates/icml/ |
🟢 Template stub |
| ICLR | templates/iclr/ |
🟢 Template stub |
| Nature | templates/nature/ |
🟢 Template stub |
| arXiv | templates/arxiv/ |
🟢 Template stub |
templates/<venue>/
├── <venue>.sty # Style file (required)
├── <venue>.cls # Class file (if applicable)
├── sample.tex # Minimal working example (required)
├── references.bib # Sample bibliography
└── figures/ # Sample figures (if applicable)
Get the official template from the venue's website or Overleaf:
- NeurIPS: https://nips.cc/Conferences — author kit
- ICML: https://icml.cc — author kit
- ICLR: https://iclr.cc — author kit
- Nature: Overleaf template gallery
- arXiv: No strict template — minimal LaTeX
Create sample.tex that:
- Uses the template style
- Includes a title, author, abstract, sections, figures, bibliography
- Compiles without errors
# Using Docker
docker compose --profile latex run latex pdflatex templates/<venue>/sample.tex
docker compose --profile latex run latex bibtex templates/<venue>/sample
docker compose --profile latex run latex pdflatex templates/<venue>/sample.tex
docker compose --profile latex run latex pdflatex templates/<venue>/sample.texEdit subagents/formatter.md to add the new venue:
- **<Venue>**: `templates/<venue>/<file>.cls` + `<file>.tex`
Add the agent entry:
"formatter-<venue>": {
"model": "9router/opencode-free",
"variant": "fast",
"description": "Formats papers for <Venue> submission",
...
}Each template directory should include:
| File | Required | Purpose |
|---|---|---|
<venue>.sty |
Yes | LaTeX style file |
<venue>.cls |
No | LaTeX class file (alternative to .sty) |
sample.tex |
Yes | Working example showing all features |
references.bib |
Recommended | Sample bibliography entries |
figures/ |
Recommended | Sample figures at correct dimensions |
README.md |
Recommended | Notes on template version, quirks, known issues |
-
pdflatex sample.texcompiles without errors -
bibtex sampleruns successfully - Two-pass
pdflatexresolves all references - Output matches venue page limits
- Figures render at correct resolution
- Fonts match venue requirements
Sisyphus Academica — MIT License