Paper: 2609.09156 Authors: Yuyang Huang, Bobo Li, Jiajia Song, Yuzhe Ding, Chong Teng, Fei Li, Donghong Ji Categories: cs.CL

The Gap

Accurate citation is the foundation of academic writing — it traces intellectual origins and substantiates core claims — and manually navigating a growing literature has become difficult enough that people rely on automatic citation recommendation.

Systems have improved in one visible way: modern retrieval-augmented architectures have largely mitigated the fabrication of non-existent papers. A model rarely invents a reference any more. But that success exposes the harder failure, because systems relying on semantic similarity struggle with misattribution — they cite authentic papers that fail to logically support the author’s claim.

That is a worse error than the one it replaced, in a specific sense: a fabricated citation is checkably wrong, whereas a real paper that is topically adjacent but substantively unsupportive reads as perfectly legitimate. A reader who checks the reference finds it exists and is about the right subject, and moves on — while the claim remains unsubstantiated.

   CITATION: THE VISIBLE PROGRESS AND THE REMAINING FAILURE

   accurate citation is the FOUNDATION of academic writing
     traces INTELLECTUAL ORIGINS
     SUBSTANTIATES core claims
   manual navigation of a growing literature is difficult
     -> reliance on AUTOMATIC CITATION RECOMMENDATION
        |
        v
   [VISIBLE PROGRESS]
     modern RETRIEVAL-AUGMENTED architectures have largely
     MITIGATED THE FABRICATION of non-existent papers
        -> a model rarely INVENTS a reference any more
        |
        v
   [WHICH EXPOSES THE HARDER FAILURE]
     systems relying on SEMANTIC SIMILARITY struggle with
     MISATTRIBUTION: they cite AUTHENTIC papers that FAIL TO
     LOGICALLY SUPPORT the author's claim
        |
        v
   WHY THAT IS WORSE THAN WHAT IT REPLACED
     a FABRICATED citation is CHECKABLY WRONG
     a REAL paper that is TOPICALLY ADJACENT but SUBSTANTIVELY
     UNSUPPORTIVE reads as PERFECTLY LEGITIMATE
       -> a reader who checks finds it EXISTS and is about the
          right subject, and moves on
       -> while the claim remains UNSUBSTANTIATED

The Increment

One sentence: Before this paper, citation recommendation ranked by topical similarity; after it, a decoupled agentic framework reasons about whether a candidate actually supports the claim, verifying consistency and self-correcting, and outperforms far larger models on strict citation accuracy.

Core Mechanism

The paper’s premise is a claim about what the task is: accurate citation requires a shift from similarity-based search to active, claim-level reasoning. That reframing explains the failure precisely. Similarity asks “is this paper about the same thing?” Reasoning asks “does this paper support this claim?” A paper can be maximally similar and unsupportive — it might report a contrary result, or a weaker result, or the same result under conditions the claim excludes.

ReCite is a decoupled agentic framework orchestrating three stages, and the word decoupled is doing work: these are separable sub-problems rather than one scoring function.

  • Location perception — identifying what it is in the text that needs support. A claim is not always a single sentence, and finding the assertion that requires a citation is a precondition for matching anything to it.
  • Intent-aware query planning — deciding what kind of evidence would support this claim, and querying accordingly. Intent-awareness is the substantive part: the query must be shaped by what the claim asserts, not by its topic words.
  • Reflective verification — checking whether the retrieved candidate actually provides the support. This is where the paper’s diagnosis is cashed out, and the mechanism is stronger than a filter: the agent verifies claim-evidence consistency and triggers self-correction loops when retrieved candidates lack logical support. So an unsupportive candidate does not merely get dropped; it triggers a revised attempt. A system that only filtered would discard the result and stop; one that self-corrects treats the failure as information about the query.

The agent is trained on synthesized reasoning trajectories, which is what makes the verification behaviour learnable rather than prompted — a distinction that matters for whether the behaviour is robust.

The result is stated as a comparison that cuts against scale: this lightweight framework outperforms state-of-the-art massive generative models in strict citation accuracy. The qualifier strict is the right metric, because loose accuracy would credit a system for citing something on-topic — the very failure being addressed.

And the paper’s framing of the contribution restates the shift: by grounding literature matching in verifiable logic rather than semantic overlap, ReCite makes the matching defensible.

   THE PREMISE IS A CLAIM ABOUT WHAT THE TASK IS
     accurate citation requires a shift FROM
       similarity-based SEARCH
     TO
       active, CLAIM-LEVEL REASONING
        |
        v
   THAT REFRAMING EXPLAINS THE FAILURE PRECISELY
     SIMILARITY asks: "is this paper about the SAME THING?"
     REASONING asks:  "does this paper support THIS CLAIM?"
        |
        v
   a paper can be MAXIMALLY SIMILAR and UNSUPPORTIVE:
     it might report a CONTRARY result
     a WEAKER result
     or the same result under conditions THE CLAIM EXCLUDES

   RECITE: a DECOUPLED AGENTIC FRAMEWORK, three stages
     <- "decoupled": separable SUB-PROBLEMS, not one scoring function

     [1] LOCATION PERCEPTION
           identifying WHAT IN THE TEXT needs support
         <- a claim is not always a single sentence; finding the
            assertion that requires a citation is a PRECONDITION
            for matching anything to it

     [2] INTENT-AWARE QUERY PLANNING
           deciding what KIND OF EVIDENCE would support this claim,
           and querying accordingly
         <- intent-awareness is the substantive part: the query must
            be shaped by WHAT THE CLAIM ASSERTS, not by its
            TOPIC WORDS

     [3] REFLECTIVE VERIFICATION
           checking whether the retrieved candidate actually provides
           the support
         <- stronger than a FILTER: the agent verifies
            claim-evidence consistency and TRIGGERS SELF-CORRECTION
            LOOPS when candidates lack logical support
         -> an unsupportive candidate does not merely get DROPPED,
            it triggers a REVISED ATTEMPT
         <- a system that only FILTERED would discard the result and
            stop; one that SELF-CORRECTS treats the failure as
            INFORMATION ABOUT THE QUERY

   TRAINED on SYNTHESIZED REASONING TRAJECTORIES
     -> makes the verification behaviour LEARNABLE rather than
        prompted (a distinction that matters for ROBUSTNESS)

   RESULT: this LIGHTWEIGHT framework OUTPERFORMS state-of-the-art
     MASSIVE generative models in STRICT citation accuracy
       <- "strict" is the right metric: LOOSE accuracy would credit a
          system for citing something ON-TOPIC -- the very failure
          being addressed

   FRAMING: grounding literature matching in VERIFIABLE LOGIC rather
     than SEMANTIC OVERLAP

Think of it as the difference between a citation that looks right and a citation that makes the argument work. If you need support for the claim that an intervention reduces a risk, a paper showing it increases the risk under some conditions is maximally on-topic and useless — worse than useless, since citing it lends apparent authority to a claim it does not support. A similarity search will surface it immediately: same intervention, same risk, same vocabulary. What is needed is to ask what the claim asserts, look for evidence of that, and — when the candidate turns out to contradict or fall short — to treat that as a signal to search differently rather than simply to try the next-similar result. And the “strict” metric that ReCite is evaluated on is the equivalent of checking whether the citation actually carries the argumentative weight, rather than whether it is in the bibliography and roughly relevant.

Key Concepts

  • Misattribution as the post-fabrication failure: citing authentic papers that fail to support the claim. It matters because it is not checkably wrong, so it passes review while leaving the claim unsubstantiated.
  • Similarity versus support as different questions: “about the same thing” against “supports this claim”. The distinction is what makes claim-level reasoning necessary rather than a refinement.
  • Three decoupled stages: location perception, intent-aware query planning, reflective verification. Separating them makes each a checkable sub-problem rather than a single opaque score.
  • Self-correction rather than filtering: an unsupportive candidate triggers a revised query. It converts a failure into information, where filtering would simply discard it.
  • Strict accuracy as the right metric: loose accuracy would reward topical relevance, which is the failure mode being addressed. It is a metric chosen to be unable to pass the wrong system.

Framework Shift

Before (similarity-based recommendation):
  rank candidates by semantic similarity to the text
  -> fabrication largely solved
  -> but misattribution persists: real papers that do not
     support the claim
  -> and a similarity ranking cannot distinguish
     "on-topic" from "supportive"

After (claim-level reasoning with self-correction):
  location perception: what needs support
  intent-aware query planning: what evidence would support it
  reflective verification: does the candidate support it
  -> unsupportive candidates trigger a revised query
  -> trained on synthesized reasoning trajectories
  -> outperforms far larger models on STRICT accuracy

From ranking references by topical closeness, to reasoning about whether a candidate carries the argumentative weight the claim requires, the core shift is that citation is a claim-level inference rather than a retrieval problem — and the metric has to be strict enough to notice the difference.

Expert Assessment

Problem choice: Excellent, and it identifies the failure that progress on fabrication exposed. The community fixed inventing references and treated citation as largely solved; naming misattribution as the remaining problem, and noting that it is harder to catch because the reference is real, is the contribution that makes the rest necessary.

Method maturity: The reframing from similarity to support is the substantive move, and the three stages follow from it rather than being assembled: you must know what needs support, plan a query about the assertion, and check whether the retrieved paper provides it. The self-correction loop is what elevates verification above filtering, and training on synthesized reasoning trajectories is what makes the behaviour learnable rather than prompt-dependent. Beating much larger models on a strict metric is a strong claim, and the choice of strict rather than loose accuracy is what makes it meaningful.

Experimental integrity: Reporting strict accuracy is the right design decision, since a looser metric would have flattered exactly the systems the paper criticises. The scope limit is that synthesized reasoning trajectories are the training source, so the agent learns from generated reasoning about claim-evidence relations — how well that transfers to domains where support relations are more contested, such as the humanities or law, is not established. The paper is also positioned against similarity-based retrieval broadly, and it would strengthen the claim to know how much of the gap closes with a similarity baseline given the same verification budget.

Writing quality: The framing sentence — similarity asks whether a paper is about the same thing, reasoning asks whether it supports the claim — does most of the explanatory work and is easy to carry away. Because the practical reader wants to know when a citation is failing, one worked example of an on-topic but unsupportive candidate, and the corrective query that replaced it, would make the contribution immediately concrete.

Verdict: strong accept — it names the citation failure that survives fabrication, reframes the task as claim-level inference with a self-correcting verification loop, and reports the result against a metric that cannot reward topicality alone.

Takeaways

  • Distinguish on-topic from supportive. A paper can share an intervention, a vocabulary and a result type and still fail to support the claim being made.
  • Check the failure mode you have not fixed. Solving fabrication exposed misattribution, which is harder to detect because the reference is genuine.
  • Self-correct rather than filter. An unsupportive candidate is information about the query, not just a result to discard.
  • Choose a metric that cannot pass the wrong system. Strict citation accuracy is used here precisely because loose accuracy rewards topical relevance.

论文: 2609.09156 作者: Yuyang Huang, Bobo Li, Jiajia Song, Yuzhe Ding, Chong Teng, Fei Li, Donghong Ji 分类: cs.CL

缺口

准确的引用是学术写作的基础——它追溯思想源头、为核论断提供依据——而手工翻阅不断增长的文献已困难到让人们依赖自动引用推荐

系统在一个显见的方面进步了:现代检索增强架构大体上阻止了”编造不存在的论文”。模型如今很少凭空造出一条参考文献。但这个成功暴露出更难的失效,因为依赖语义相似度的系统会栽在”错误归因”上——它们引用真实、却在逻辑上并不支持该论断的论文。

那个错误在某个具体意义比它所取代的那个更糟:编造的引用是可以查出错处的,而一篇主题邻近、实质上却不支持的真实论文,读起来完全合法。去核查的读者会发现它存在、且讲的是差不多的话题,于是继续往下读——而那条论断依然没有得到依据

   引用:显见的进步与残留的失效

   准确的引用是学术写作的「基础」
     追溯「思想源头」
     为核论断「提供依据」
   手工翻阅不断增长的文献已很困难
     -> 依赖「自动引用推荐」
        |
        v
   [显见的进步]
     现代「检索增强」架构大体上
     「阻止了编造不存在的论文」
        -> 模型如今很少「凭空造出」一条参考
        |
        v
   [而这暴露出更难的失效]
     依赖「语义相似度」的系统栽在「错误归因」上:
     引用「真实、却在逻辑上并不支持该论断」的论文
        |
        v
   为什么它比被取代的那个更糟
     「编造的引用」是可以「查出错处」的
     「主题邻近、实质却不支持」的真实论文
     读起来「完全合法」
       -> 去核查的读者发现它存在、话题也对,于是继续往下读
       -> 而那条论断「依然没有依据」

增量

一句话: 在这篇论文之前,引用推荐按主题相似度排序;在这篇论文之后,一个解耦的智能体框架去推理”候选是否真的支持该论断”、验证一致性并自我纠正,在严格引用准确率上超过了大得多的模型。

核心机制

论文的前提是一个关于”这个任务是什么”的主张:准确的引用要求从相似度检索转向主动的、「论断层面」的推理。 这个重构精确地解释了那个失效。相似度问的是”这篇论文是否在讲同一件事?“;推理问的是”这篇论文是否支持这条论断?“一篇论文可以最大程度地相似、却完全无支持作用——它可能报告了一个相反的结果,一个更弱的结果,或者是在该论断所排除的条件下得到的同一结果。

ReCite 是一个解耦的智能体框架,编排三个阶段,而”解耦”这个词在做事:它们是可分离的子问题,而不是一个打分函数。

  • 定位感知(location perception)——识别文本中什么需要被支持。一条论断并不总是一句话;找到”需要引用的那个断言”,是把它与任何东西匹配起来的前提
  • 意图感知的查询规划(intent-aware query planning)——判断哪种证据能支持这条论断,并据此去检索。意图感知是实质部分:查询必须由该论断所断言的内容塑形,而不是由它的话题词塑形。
  • 反思式验证(reflective verification)——检查检索到的候选是否确实提供了那份支持。论文的诊断在这里被兑现,而机制比”过滤器”更强:智能体验证”论断—证据”一致性,并在候选缺乏逻辑支持时触发自我纠正回路。 所以一个无支持作用的候选不只是被丢掉,它触发一次修订后的尝试。只做过滤的系统会丢弃结果并停下;会自我纠正的那个把失败当作关于查询的信息。

智能体是在合成的推轨迹上训练的,这才让验证行为是可学的,而不是提示出来的——这个区分对”行为是否稳健”很要紧。

结果以一种与规模相逆的对比给出:这个轻量框架在严格引用准确率上超过最先进的大型生成模型。 **“严格”**是那个正确的指标,因为宽松的准确率会因为”引了某个主题相关的东西”而给分——而那正是被针对的那个失效。

论文对贡献的表述重述了这次转向:通过把文献匹配建立在可验证的逻辑、而不是语义重叠之上,ReCite 让这种匹配站得住脚。

   前提是一个关于"任务是什么"的主张
     准确的引用要求从
       "基于相似度的检索"
     转向
       "主动的、论断层面的推理"
        |
        v
   这个重构「精确地」解释了失效
     「相似度」问:"这篇论文是否在讲「同一件事」?"
     「推理」  问:"这篇论文是否支持「这条论断」?"
        |
        v
   一篇论文可以「最大程度相似」却「完全无支持作用」:
     它可能报告了一个「相反」的结果
     一个「更弱」的结果
     或是在「该论断所排除的条件」下得到的同一结果

   RECITE:一个「解耦」的智能体框架,三个阶段
     <- "解耦":可分离的「子问题」,不是一个打分函数

     [1] 「定位感知」
           识别「文本中什么」需要被支持
         <- 论断不总是一句话;找到"需要引用的那个断言",
            是把它与任何东西匹配起来的「前提」

     [2] 「意图感知的查询规划」
           判断「哪种证据」能支持这条论断,并据此检索
         <- 意图感知是实质部分:查询必须由
            "该论断「所断言的内容」"塑形,
            而不是由它的「话题词」塑形

     [3] 「反思式验证」
           检查检索到的候选是否「确实提供」了那份支持
         <- 比"过滤器"更强:智能体验证"论断—证据"一致性,
            并在候选缺乏逻辑支持时「触发自我纠正回路」
         -> 无支持作用的候选不只是一「被丢掉」,
            它触发一次「修订后的尝试」
         <- 只做「过滤」的系统会丢弃结果并停下;
            会「自我纠正」的那个把失败当作
            关于「查询」的「信息」

   在「合成推理轨迹」上训练
     -> 让验证行为是「可学的」,而不是「提示出来的」
        (这个区分对"行为是否稳健"很要紧)

   结果:这个「轻量」框架在「严格引用准确率」上
     超过最先进的「大型生成模型」
       <- "严格"是正确的指标:宽松准确率会因为
          "引了某个「主题相关」的东西"而给分——
          而那正是被针对的失效

   表述:把文献匹配建立在「可验证的逻辑」,
     而不是「语义重叠」之上

可以用**“一条看起来对、与一条让论证成立的引用之间的差别”来理解这件事: 如果你需要为”某项干预降低风险”提供支持,而一篇论文显示它在某些条件下提高了风险,那么它最切题、也最没用**——比没用更糟,因为引用它会给一个它并不支持的论断披上权威的外衣。相似度检索会立刻把它翻出来:同一干预、同一风险、同一套词汇。 真正需要做的是:问清这条论断断言了什么,去找那件事的证据;而当候选反驳或不达时,把它当作”该换一种检索方式”的信号,而不是”去试下一个相似结果”。而 ReCite 被评估所用的**“严格”指标**,相当于检查这条引用是否真的承担了论证的重量,而不是”它是否在参考文献里、且大致相关”。

关键概念

  • 以”错误归因”作为编造之后剩下的失效: 引用真实却不支持该论断的论文。它要紧,因为它查不出明显错处——于是能通过评审,却让论断没有依据
  • “相似”与”支持”是两个不同的问题: “讲的是同一件事” vs “支持这条论断”。正是这个区分让”论断层面的推理”成为必要,而不是一种改良
  • 三个解耦阶段: 定位感知、意图感知的查询规划、反思式验证。把它们分开,才让每一段成为可检验的子问题,而不是一个不透明的总分。
  • 自我纠正而非过滤: 无支持作用的候选会触发一次修订后的查询。它把失败变成信息,而过滤只会把它丢掉。
  • 以严格准确率作为正确指标: 宽松准确率会奖励主题相关——而那正是被针对的失效模式。这是一个”无法让错误系统通过”的指标。

框架转变

之前(基于相似度的推荐):
  按与文本的语义相似度给候选排序
  -> 编造问题大体解决
  -> 但错误归因仍在:真实却不支持该论断的论文
  -> 而相似度排序无法区分"切题"与"有支持作用"

之后(带自我纠正的论断层推理):
  定位感知:什么需要被支持
  意图感知的查询规划:什么证据能支持它
  反思式验证:候选是否支持它
  -> 无支持作用的候选触发一次修订后的查询
  -> 在合成推理轨迹上训练
  -> 在「严格」准确率上超过大得多的模型

从”按主题接近程度给参考文献排序”,转变为”推理一个候选是否承担了该论断所需的论证重量”,核心转变在于:引用是一个论断层面的推断,而不是一个检索问题——而指标必须严格到足以察觉这个差别

专家评审

选题眼光: 极好,而且它指出了”编造问题上的进步”所暴露出来的那个失效。 社区修好了”编造参考文献”,并把引用当成大体解决了;而把错误归因点名为遗留问题、并指出它因为文献是真的而更难被抓到,正是让其余部分成为必要的那个贡献。

方法成熟度: 从”相似度”到”支持”的重构是实质动作,而三个阶段是由它推出的,而不是拼装出来的:你必须知道什么需要支持,围绕该断言规划查询,再检查检索到的论文是否提供了它。 自我纠正回路把”验证”提升到”过滤”之上;而在合成推理轨迹上训练,才让这个行为可学、而不是依赖提示。 在一个严格指标上击败大得多的模型是一个强主张,而选择严格而非宽松准确率,正是让这个主张有意义的地方。

实验诚意: 报告严格准确率是正确的设计决定,因为更宽松的指标恰恰会抬高论文所批评的那些系统。 范围限制在于训练来源是合成的推理轨迹:智能体从”关于论断—证据关系的生成推理”中学习,而它对此类关系更具争议的领域(如人文学科或法律)迁移得如何,未被确立。 论文还广泛地把自己定位为”对抗基于相似度的检索”;若能知道”在同样的验证预算下、与相似度基线的差距还剩多少”,会强化这个主张。

写作功力: 那句话——相似度问一篇论文是否讲同一件事,推理问它是否支持该论断——承担了大部分的说明工作,也很容易被带走。 由于实用型读者想知道”一条引用何时在失效”,若能给一个具体示例——一个切题却无支持作用的候选、以及取代它的那次修正查询——会让贡献立刻变得具体。

判决: 强接收(Strong Accept) — 它指出了”在编造问题被解决之后仍然存活”的引用失效,把任务重构为带自我纠正验证回路的论断层推理,并用一个”无法仅凭切题就通过”的指标报告了结果。

要点总结

  • 区分切题有支持作用。一篇论文可以共享同一干预、同一套词汇、同一类结果,却依然不支持你正在做的那个论断。
  • 检查你还没有修好的那个失效模式。解决”编造”暴露了”错误归因”,而后者更难发现,因为参考文献是真实的。
  • 自我纠正,而不是过滤。一个无支持作用的候选是关于查询的信息,而不只是一个该丢弃的结果。
  • 选择一个无法让错误系统通过的指标。这里用”严格引用准确率”,正是因为宽松准确率会奖励主题相关