Skip to content

Commit b7998b1

Browse files
JihaoXinclaude
andcommitted
Fix venue template mapping: EuroMLSys, SOSP, OSDI, USENIX formats
- EuroMLSys format was "sigplan" but template dir is "euromlsys" - SOSP/EuroSys format was "acm" → changed to "sosp" (matching template) - OSDI/NSDI/ATC format was "usenix" → changed to "osdi" (matching template) - IEEE S&P → falls back to "neurips" template (closest single-col) - Added latex_geometry aliases: osdi→usenix, nsdi→usenix, eurosys→acmart-large This fixes "Waiting for template" errors when creating projects for these venues. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3687640 commit b7998b1

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

ark/latex_geometry.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@
122122
"pldi": "acmart-sigplan",
123123
"asplos": "acmart-large",
124124
"sosp": "acmart-large",
125+
"eurosys": "acmart-large",
126+
"osdi": "usenix",
127+
"nsdi": "usenix",
128+
"atc": "usenix",
125129
"iclr": "neurips",
126130
"infocom": "ieee",
127131
}

ark/webapp/routes.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1049,14 +1049,14 @@ async def api_venues():
10491049
{"name": "EMNLP", "format": "emnlp", "pages": 8},
10501050
{"name": "CVPR", "format": "cvpr", "pages": 8},
10511051
{"name": "MLSys", "format": "mlsys", "pages": 8},
1052-
{"name": "EuroMLSys", "format": "sigplan", "pages": 6},
1052+
{"name": "EuroMLSys", "format": "euromlsys", "pages": 6},
10531053
# Systems
1054-
{"name": "SOSP", "format": "acm", "pages": 14},
1055-
{"name": "EuroSys", "format": "acm", "pages": 12},
1056-
{"name": "NSDI", "format": "usenix", "pages": 14},
1057-
{"name": "OSDI", "format": "usenix", "pages": 14},
1058-
{"name": "USENIX ATC", "format": "usenix", "pages": 12},
1059-
{"name": "IEEE S&P", "format": "ieee", "pages": 13},
1054+
{"name": "SOSP", "format": "sosp", "pages": 14},
1055+
{"name": "EuroSys", "format": "sosp", "pages": 12},
1056+
{"name": "NSDI", "format": "osdi", "pages": 14},
1057+
{"name": "OSDI", "format": "osdi", "pages": 14},
1058+
{"name": "USENIX ATC", "format": "osdi", "pages": 12},
1059+
{"name": "IEEE S&P", "format": "neurips", "pages": 13},
10601060
# Networking
10611061
{"name": "INFOCOM", "format": "infocom", "pages": 9},
10621062
]

0 commit comments

Comments
 (0)