Accept as Journal Publication at SIGGRAPH:
a Gift or a Curse?

Alec Jacobson (with heavy use of Claude Code, see below)

March 18, 2026

weblog/

Dual-track submissions to SIGGRAPH have been around for a few years now. During review deliberations its generally assumed that being accepted as a journal publication is better than conference. Journal accepts get relieved of the page limit, and supposedly there are universities that bean-count journal publications as more valueable than conference papers (seriously, though? even as CVPR, ICLR and NeurIPS approach or exceed the impact factors of Science and Nature?). Setting other reasons aside, I wondered if I could get Claude Code to gather data and test whether SIGGRAPH conference publications received fewer (or, spoilers, more!) citations than journal publications.

In the blue block below, I've pasted the site that Claude Code made to summarize the data and statistics gathered by the code it wrote. The bottom contains a link to the per-paper data and the scraping and analysis code is on github. After the blue section, I have some closing reflections.

Do SIGGRAPH Conference Papers Get More Citations Than Journal Papers?

Analysis of 1904 papers from 2022–2025  ·  Citation data from Semantic Scholar  ·  2026-03-18

In 2022, SIGGRAPH and SIGGRAPH Asia introduced a conference track alongside the traditional route of journal publication in ACM Transactions on Graphics (TOG). Accepted papers now choose — or are assigned to — one of two routes from the same venue and roughly the same review pool. We ask whether this publication-route choice is associated with a difference in citation impact, using 1904 papers from 2022–2025 (1885 with citation data).

Key Findings

  1. Conference-track papers receive 1.26× the citations of journal-track papers on average, after controlling for age and venue (p < 0.001). This is a 26% citation advantage.
  2. Recency dominates everything. Each additional year of age multiplies expected citations by ~2.09× (p < 0.001). A 2022 paper has roughly 4× the citations of an otherwise identical 2024 paper.
  3. SIGGRAPH Asia papers are cited ~12% less than SIGGRAPH NA papers of the same track, after accounting for the ~4-month publication lag between venues (p = 0.012). This is a residual venue effect beyond timing.
  4. Per-year evidence is weaker: conference papers have higher median citations in 7 of 8 (venue, year) pairs, but only 1 survive FDR correction. The pooled regression drives the overall signal.

Background

Before 2022, all SIGGRAPH technical papers were published as journal articles in TOG. Starting in 2022, accepted papers could appear either in a dedicated conference proceedings volume (conference track) or in the TOG issue that DBLP associates with that year's conference (journal track). The split applies to both SIGGRAPH North America (held ~August) and SIGGRAPH Asia (held ~December).

This creates a natural comparison: papers from the same review cycle, same venue, same year — but different publication routes. Any systematic citation difference may reflect visibility effects (open-access proceedings vs. journal), self-selection by authors, or differences in how the community discovers and cites each type.

Data

Paper metadata was retrieved from DBLP for 2022–2025 using the DBLP search API. For each year, four sources were queried: the SIGGRAPH NA conference-track page, the corresponding TOG volume (issue 4), the SIGGRAPH Asia conference-track page, and the corresponding TOG volume (issue 6). Results were deduplicated on (venue, year, title). Non-paper records (editorship entries, proceedings metadata) were filtered out.

Citation counts were fetched from the Semantic Scholar API in batches of 500 DOIs. Of 1904 papers, 1885 (99%) matched a Semantic Scholar record. Counts reflect citations indexed as of 2026-03-18.

Results

Recency: papers from 2024–2025 have had less time to accumulate citations. The x-axis is staggered by approximate publication month (NA ≈ August, Asia ≈ December) to reflect this within-year offset.

Median citations over time

Figure 1. Median citation count per group by approximate publication date. The downward trend toward recent years reflects recency, not declining quality.

Citation distributions (log scale)

Figure 2. Box plots of citation counts on a log scale. Boxes show interquartile range; whiskers extend to 1.5× IQR; points are outliers.

Statistical Analysis

Method 1 — Mann-Whitney U (per venue & year)

A non-parametric rank test comparing conference vs. journal citation distributions within each (venue, year) pair. By testing within-group, this controls for both recency and venue without model assumptions. Effect size is the rank-biserial correlation r: negative values mean conference papers rank higher (more citations). p-values are Benjamini-Hochberg FDR-corrected across all 8 tests.

VenueYearn confn journal Median confMedian journal Effect rp (raw)p (FDR)

Significant results (p < 0.05) shown in red. Positive r = conf papers have higher citations.

Method 2 — OLS regression on log(citations+1)

A regression model that controls for recency and venue simultaneously across all papers: log(c+1) = β₀ + β₁·is_conf + β₂·age_years + β₃·is_asia + ε. age_years is computed from the approximate publication date (NA ≈ August 1, Asia ≈ December 1), capturing both the year-level recency trend and the ~4-month within-year offset between venues. The is_asia coefficient therefore reflects a residual venue effect after timing is fully absorbed.

PredictorCoefSEtp95% CI

Supplementary: Page Count Analysis

At submission, dual-track papers are limited to 7 pages of content (excluding references and up to two optional figures-only pages). Journal-track submissions have no page limit. Accepted dual-track papers appear in conference proceedings with roughly the same length; journal-accepted papers may expand freely. This creates a structural difference in paper length between the two tracks, which could independently affect citation counts — longer papers may present more complete work.

Page Count Findings

  • Conference track: shorter papers get more citations. Within the narrow page range enforced by the submission limit, fewer pages predicts more citations — SIGGRAPH-conf: significant moderate negative correlation (r = -0.26, p < 0.001); SIGGRAPH Asia-conf: significant moderate negative correlation (r = -0.19, p < 0.001). More concise papers may present more focused, impactful contributions.
  • Journal track: page count does not predict citations. SIGGRAPH-journal: no significant correlation (r = -0.05, p = 0.241); SIGGRAPH Asia-journal: no significant correlation (r = -0.02, p = 0.730). With no page cap, paper length is uncorrelated with citation impact.
  • The two tracks have structurally different length distributions. Conference papers cluster around 10–12 pages (7 content + references + optional figures); journal papers span a much wider range with a median around 15 pages.
  • Both hypotheses point the same direction — but cannot be fully disentangled here. "Less pages → more citations" is consistent with the data: shorter conference papers get more citations within-track, and cross-track the shorter group (conference) outperforms the longer group (journal). "Conference track → more citations" is also supported. The two effects are confounded: conference papers are both shorter and on a different publication route. The current regression controls for age and venue but not page count — adding page count as a covariate would help separate the two effects.

Page count distributions by track

Figure 3. Distribution of page counts per group. Conference-track papers cluster around the 7-page submission limit (typically 8–12 pages including references and optional figures). Journal-track papers are substantially longer with no page cap.

Pages vs. citations (per paper)

Figure 4. Each point is one paper. Citations on a log scale. Spearman correlations (reported in table below) measure the monotonic relationship between page count and citations within each group.

Spearman correlation: page count vs. citations

Groupn (with page data)Spearman rp

Spearman r measures monotonic correlation between page count and citation count within each group, ignoring recency or venue differences.

Limitations

Data Download & Explorer

↓ Download papers-with-citations.csv   (1904 papers, columns: conference, year, track, title, authors, doi, citations, …)

Hello, again. My main take on this is that this kind of meta study is now exceptionally easy with AI coding agents. In this case, the data collection didn't require much difficult labelling or filtering. The data is fairly easy to inspect for correctness.

As far as the conclusions in this case, it sure seems like conference papers get more citations. This might be because conference papers have more computer vision adjacent content. Or dual-track attracts more exciting work more generally. Nevertheless, it seems that if we treat SIGGRAPH conference papers as a venue, then this venue is headed toward higher citation-impact than TOG. At the end of the day, citation impact is a major factor when choosing a publication venue. Accepting a dual-track paper to journal publication or submitting to journal-only track means associating the paper with a potentially lower citation-impact venue.

Running this arm-chair statistics was a fun distraction and reason to get more familiar with Claude Code. There's a small part of me that thinks we waste too much effort drawing the line between journal and conference. So the findings encourage me to care even less about this distinction. I sort of wish we just had conference papers, and let TOG do its thing separately, but I'm not sure I'd make a strong case for it. Id

Zooming out, conference versus journal seems like the least of our worries as peer-review feels like it's falling apart at the seams. In my limited anecdotal experience, maybe 5-20% of SIGGRAPH submissions are heavily AI-generated (and not good), yet we waste many total human hours reviewing them or dancing around desk-rejecting them. Looking at reviews, it's closer to 20-50% AI-generated (and range between not helpful to superficially helpful). Many SIGGRAPH committee members reported exceptional, new difficulty recruiting volunteer tertiary reviewers (as vision and ML conferences have moved to required reviewing for submitters). Paper acceptance is an increasingly random signal.