Citation Grounding (CG)
- Citation grounding is a methodology that verifies citations accurately support claims by linking specific text spans to their original sources.
- It employs techniques such as extractive span alignment, retrieval-augmented decoding, and graph-based provenance to ensure evidence fidelity.
- Empirical studies demonstrate that integrating fine-grained extraction and validation steps significantly improves citation precision and reduces hallucinations.
Citation grounding (CG) is the family of tasks concerned with ensuring that a generated citation faithfully supports the claim, sentence, span, or answer to which it is attached. Across current work, the concept is formalized at several granularities. FullCite defines an inline citation as , where and is a contiguous, verbatim span from document . CiteGuard treats CG as binary alignment over span–citation pairs . Legal citation grounding verifies whether extracted citations exist and remain valid in a ground-truth citation graph. Agentic GraphRAG extends the notion beyond source support to trajectory-level provenance over cited and uncited traversal context (Yeginbergen et al., 5 Jun 2026, Choi et al., 15 Oct 2025, Ovcharov, 30 May 2026, Terrenzi et al., 14 May 2026).
1. Formal definitions and problem scope
In attributed question answering, FullCite formulates an answer as a sequence of claims , each immediately followed by a citation . Its citation grammar is
with
subject to two constraints: every claim must be followed by exactly one citation, and the snippet must appear verbatim in the chosen document. The resulting task is not merely to name a relevant document, but to bind each claim to a specific evidence span (Yeginbergen et al., 5 Jun 2026).
In scientific writing, CiteGuard defines CG over a generated document containing textual spans 0 and citations 1. For every observed pair 2, the task is to determine whether the citation is a faithful source for the claim in 3, represented by 4. The operational decision rule is retrieval-augmented: 5 where 6 is a retrieval score and 7 is an LLM-based alignment score (Choi et al., 15 Oct 2025).
Fine-grained grounding has also been defined as explicit extraction of supporting quotes. FRONT represents grounding as a sequence
8
where each tuple contains a document index and an extractive segment drawn verbatim from that document. The answer sequence is then generated with citations restricted to document indices whose supporting segments appear in 9. Li et al. formulate a closely related scientific citation-generation problem as mapping each citation sentence 0 to one or more cited text spans 1 in the cited paper such that 2 (Huang et al., 2024, Li et al., 2023).
In legal reasoning, CG is additionally a metric. For a response 3 and legal citation graph 4,
5
with 6 if no citations are extracted. This formulation is then decomposed into citation precision, citation relevance, and citation temporality, separating existence errors from contextual and temporal mismatch (Ovcharov, 30 May 2026).
Agentic GraphRAG broadens the scope further. Given a graph traversal 7, final citation faithfulness is defined not only by whether each cited node supports the answer, but by whether the cited set is necessary and sufficient relative to the full traversal and local neighborhoods. Terrenzi et al. therefore distinguish citation sufficiency from “provenance sufficiency,” where the induced subgraph over cited and visited nodes must be enough to recover model behavior (Terrenzi et al., 14 May 2026).
2. Grounding units and evidence granularity
The literature differs sharply in what counts as the atomic grounding unit. Some systems require contiguous verbatim spans from retrieved documents; others require extractive quotes, cited text spans from full papers, line intervals in code, statute nodes in a graph, or visited entities in a traversal trace. This variation is not superficial: it determines what can be verified mechanically, what can be scored automatically, and which failure modes remain latent (Li et al., 2023, Huang et al., 2024, Arafat, 13 Dec 2025, Ovcharov, 30 May 2026, Terrenzi et al., 14 May 2026).
| Setting | Grounding unit | Verification condition |
|---|---|---|
| FullCite-style attributed QA | 8 | snippet appears verbatim in the cited document |
| FRONT and CTS-based citation generation | extractive quote or cited text span | quote/span is drawn from the cited paper text |
| Code comprehension | 9 | cited interval overlaps a retrieved chunk |
| Legal citation graphs | statute node with contextual and temporal checks | provision exists, is contextually appropriate, and was valid at the relevant date |
| Agentic GraphRAG | cited entities plus traversal context | faithfulness depends on cited and visited-but-uncited structure |
Li et al. show that conditioning citation generation on cited text spans rather than on abstracts significantly 0 increases faithfulness, increases token overlap, and reduces hallucination. FRONT adopts an analogous fine-grained stance by requiring extractive supporting quotes before answer generation. In code, line-level citations permit strict interval-overlap checking. In legal settings, graph-based verification introduces a different granularity: the object being grounded is not a span of prose but a normalized law–article identifier, potentially indexed by date (Li et al., 2023, Huang et al., 2024, Arafat, 13 Dec 2025, Ovcharov, 30 May 2026).
A plausible implication is that “citation” is not a single data type across CG research. The field includes document identifiers, verbatim substrings, full-text evidence sentences, code line ranges, graph nodes, and traversal-induced provenance summaries. As a result, systems that appear similar at the output layer may be solving materially different grounding problems.
3. Methodological families
One line of work imposes structure directly during generation. FullCite implements three strategies: prompt-based generation, constrained decoding over a citation grammar compiled into a finite-state automaton, and posthoc span alignment. In constrained decoding, the automaton tracks whether decoding is in Claim, DOCID, or SNIPPET mode, restricts allowable tokens accordingly, and retries up to 3 times with temperature increased by 1 on failure. In posthoc alignment, a produced snippet 2 is replaced by the best matching verbatim span 3 if Jaccard token-set similarity satisfies 4, with 5 empirically (Yeginbergen et al., 5 Jun 2026).
A second line uses supervised or preference-based adaptation so that the model learns to self-cite. AGREE constructs grounded training examples from unlabeled queries using a pretrained NLI model 6, fine-tunes the base LLM to emit inline citations and identify unsupported statements, and then applies a test-time adaptation loop that re-retrieves on unsupported spans. XKD-Dial implements a four-stage progressive pipeline: multilingual adaptation, English citation-grounded SFT, bilingual citation-grounded SFT, and GRPO alignment with citation-aware rewards including factual consistency, entity overlap, citation attribution, fluency, length penalty, hallucination penalty, and explicit citation bonus or penalty (Ye et al., 2023, Pandya, 19 Mar 2026).
A third line validates citations after generation rather than entrusting the generative model alone. CiteGuard couples retrieval with fine-tuned validation: a query built from the textual span and citation metadata retrieves candidate documents, and a cross-encoder LLM scores whether a retrieved document supports the cited claim. Because the framework scores retrieved alternatives, it can identify alternative but valid citations in addition to rejecting spurious ones (Choi et al., 15 Oct 2025).
Production-oriented systems often combine citation prompting with retrieval and systems engineering constraints. The e-commerce “Cite Before You Speak” system uses in-context learning to generate answer sentences with bracketed citations in one pass and introduces Multi-UX-Inference, which stores citation-specific instructions on a separate attention-cache page so citation and non-citation UX variants can share a single prefill. In code comprehension, hybrid retrieval combines BM25, BGE dense embeddings, and Neo4j import-graph expansion, after which mechanical citation verification checks that every cited line range overlaps a retrieved chunk; if no valid citations are emitted, an auto-cite fallback inserts the highest-scoring retrieved chunk (Zeng et al., 5 Mar 2025, Arafat, 13 Dec 2025).
4. Evaluation frameworks
FullCite evaluates grounding along three dimensions. Document-level correctness uses the gold and predicted supporting document sets 7 and 8, with precision 9, recall 0, and
1
Evidence span identification uses token-level F1 between predicted and gold snippets in the same document, averaged over claims. Claim-citation faithfulness is measured by cosine similarity between embeddings of the claim and citation using Sentence-Transformer all-MiniLM-L6-v2, by GPT-5.4 support and relevance judgments on a 1–5 scale, and by human evaluation on the same rubric (Yeginbergen et al., 5 Jun 2026).
Other settings broaden the metric set. The e-commerce system defines Claim Grounding Rate, Correct Citation Rate, Perfect Sentence Rate, Sentence with Citation Rate, and Evidence Utilization Rate, all using an NLI judge 2. XKD-Dial reports BLEU, ROUGE, BERTScore, FactScore, Citation-F1, and hallucination rate, and supplements outcome metrics with cross-attention alignment, Integrated Gradients attribution, and occlusion-based causal grounding. These explainability analyses aim to reveal how citation behavior is learned, not only whether it is learned (Zeng et al., 5 Mar 2025, Pandya, 19 Mar 2026).
Legal citation grounding decomposes quality into citation precision, citation relevance, and citation temporality. The derived Citation Quality score penalizes non-existent citations, contextually inappropriate citations, and citations that were not valid at the relevant date. LegalCiteBench, by contrast, studies closed-book authority generation with citation retrieval, citation completion, citation error detection, case matching, and case verification/correction, and introduces Misleading Answer Rate as a measure of concrete but incorrect outputs under low task score (Ovcharov, 30 May 2026, Chen et al., 11 May 2026).
Trajectory-sensitive systems require different diagnostics. Agentic GraphRAG measures necessity through 3, contrasts it with random removal 4, tests sufficiency through 5, and tracks
6
These metrics explicitly evaluate whether final citations alone can reconstruct behavior or whether uncited traversal context remains causally active (Terrenzi et al., 14 May 2026).
5. Empirical findings across domains
In attributed QA and scientific writing, a recurrent pattern is strong document identification but weak evidence localization. FullCite reports that LLMs are generally effective at identifying relevant documents, with Doc-F1 often in the 50–90% range, but struggle to identify precise supporting spans, with Snippet-F1 often below 30%. On ASQA, prompt-based generation with Qwen3-8B yields 7 for document, snippet, and similarity, whereas FullCite posthoc yields 8; the ASQA snippet-F1 jump from 9 to 0 is a central result. FullCite also reports that citation enforcement improves downstream QA for BioASQ factoid questions from 1 to 2 ROUGE-L. FRONT, on the ALCE benchmark with LLaMA-2-7B, reports citation F1 scores of 3 on ASQA, 4 on ELI5, and 5 on QAMPARI, corresponding to an average 6 improvement in citation quality across all datasets and surpassing ChatGPT on those citation-F1 measurements. CiteGuard raises CiteME accuracy from 7 for LLM-as-a-Judge to 8, compared with 9 human inter-annotator accuracy (Yeginbergen et al., 5 Jun 2026, Huang et al., 2024, Choi et al., 15 Oct 2025).
Training-based self-grounding also improves classical grounding metrics. AGREE reports citation-recall gains of 15–40 percentage points and citation-precision gains of 20–50 percentage points over prompting-based and post-hoc approaches across five datasets, with test-time adaptation adding 2–6 points in recall and 1–7 points in precision; on NQ, TTA also yields 0 EM. XKD-Dial reports that citation-grounded SFT reduces hallucination to 1 for encoder–decoder models from Stage 2 onward, that both Flan-T5-Base and Flan-T5-Large reach English Citation-F1 2 after Stage 2, and that Stage 3 to Stage 4 deltas are negligible, below 3 in Citation-F1 and FactScore (Ye et al., 2023, Pandya, 19 Mar 2026).
In production QA, citation prompting can improve both grounding metrics and user-facing outcomes. In the e-commerce CSA setting, CGR rises on synthetic data from 4 for Vanilla to 5 for Guided and 6 for Citation. On real-world data, CGR rises from 7 for Guided to 8 for Citation, a relative improvement of approximately 9. The same system reports 0, 1, 2, and refusal signals for no-relevant-evidence queries 3 of the time under citation prompting versus 4 under Guided. Large-scale online A/B tests over 10 M customers for two weeks report customer-engagement gains of 5, depending on the UX (Zeng et al., 5 Mar 2025).
Scientific citation-text generation shows a similar gain from finer evidence. Li et al. report that abstract-only conditioning gives ROUGE-L recall 6 and ANLI 7, whereas CTS-based inputs push ROUGE-L recall above 8 and ANLI above 9. Their keyword-based CTS retrieval achieves input ROUGE-L recall 0 and downstream BLEU 1, compared with abstract BLEU 2. Human evaluation for RAG-FiD gives Overall scores of 3 for Abstract, 4 for Context, 5 for Oracle, and 6 for Keyword (Li et al., 2023).
In code comprehension, the strongest reported numbers come from hybrid retrieval plus strict verification. Across 30 Python repositories and 180 developer queries, the system reports 7 citation accuracy with zero hallucinations. Sparse-only and dense-only modes yield citation accuracy of 8 and 9, respectively, while the hybrid system reaches 0, a 1 point gain over sparse and 2 over dense. For 112 cross-file questions, graph expansion raises cross-file citation completeness from 3 to 4, discovering on average 11.8 new neighbor chunks per query (Arafat, 13 Dec 2025).
Legal results are bifurcated between grounded verification and closed-book generation. The Ukrainian legal citation-graph framework reports mean CG in the 5 range across five systems, corresponding to 6 hallucinated citations. On a CG-DPO dataset of 2,244 court decisions, a Qwen2.5-7B-Instruct model fine-tuned with LoRA reaches mean validation accuracy 7, reward margin 8, and standard deviation below 9 percentage points across 3 seeds in distinguishing correct from corrupted citations. LegalCiteBench, which tests closed-book citation recovery on approximately 24K instances and 21 LLMs, reports that even the strongest models score below 00 on citation retrieval and completion, and that Misleading Answer Rates exceed 01 for 20 of 21 evaluated models on retrieval-heavy tasks (Ovcharov, 30 May 2026, Chen et al., 11 May 2026).
6. Limitations, misconceptions, and open problems
A persistent misconception is that citation syntax is equivalent to citation grounding. XKD-Dial explicitly shows otherwise: decoder-only models often learn citation format without true causal grounding, and Citation-F1 must therefore be complemented by occlusion tests. The same paper reports that encoder–decoder models achieve high causal-grounding scores, approximately 02, whereas decoder-only models can drop to 03, indicating that citation markers may be emitted without consulting the source text (Pandya, 19 Mar 2026).
A second misconception is that support from final citations is sufficient to explain system behavior. Agentic GraphRAG directly contests that assumption. On the 25-question testbed after excluding LLM-solvable items, cited removal in Agentic GraphRAG drops accuracy from 04 to 05, showing necessity, but full isolation to cited entities alone still degrades performance strongly. In the Evidence-First variant, full isolation drops accuracy from 06 to 07, while text-only isolation for Agentic GraphRAG drops it only from 08 to 09. Removing visited-but-uncited entities lowers Agentic accuracy from 10 to 11. These results indicate that faithful provenance may require cited evidence, uncited traversal context, and surrounding graph structure together (Terrenzi et al., 14 May 2026).
Span identification remains a principal bottleneck even when document retrieval is strong. FullCite identifies precise evidence extraction as the main gap, notes BioASQ snippet-F1 around 12 even in the best setting, and reports a primacy bias in which 13 of BioASQ citations target only the first two of five documents. It also notes that yes/no questions often omit citations entirely, inflating ungrounded QA metrics. CiteGuard likewise questions reliance on LLM-as-a-Judge alone and motivates retrieval-aware validation as a way to reduce hallucinated or spurious citations (Yeginbergen et al., 5 Jun 2026, Choi et al., 15 Oct 2025).
Closed-book legal citation generation exposes a distinct failure mode: calibration can improve without improving knowledge. LegalCiteBench reports that explicit uncertainty instructions reduce some confident fabrication and lower Misleading Answer Rate in prompt-only abstention experiments, but do not improve citation correctness. The graph-based legal CG work further notes that 14 of “hallucinations” flagged by its metric were real statutes that courts rarely cite, and that current temporality checks do not yet use versioned force-of-law data, motivating integration of a legislative API and broader graph coverage (Chen et al., 11 May 2026, Ovcharov, 30 May 2026).
The future directions proposed across the literature are correspondingly concrete. FullCite recommends supervised span-locator modules, hybrid retrieval-generation that retrieves candidate spans first, explicit instruction tuning for joint document-plus-span grounding, and finer-grained evaluation such as position-based citation recall. AGREE proposes human-annotated partial-support examples, RLHF with grounded-response preferences, and extension to multilingual corpora and long-form generation. The e-commerce CSA work points to stronger retrievers, dynamic source selection, and multimodal UXs. Code-grounded systems propose richer structural analyses, including call graphs and data flow, as well as citation anchors less brittle than raw line numbers. Taken together, these proposals suggest that CG is shifting from a formatting problem toward a broader evidence-engineering problem in which retrieval, alignment, verification, and provenance all remain active research fronts (Yeginbergen et al., 5 Jun 2026, Ye et al., 2023, Zeng et al., 5 Mar 2025, Arafat, 13 Dec 2025).