Citations

Citations are evidence pointers, not decorations. A cited source must support the specific claim made by the answer. They are strongest when grounding, context construction, and RAG evaluation all operate on stable passage IDs.

A good citation lets a reader or validator answer: “Which exact source span supports this exact claim, and was that span available to the model?”

What a citation must prove

A citation contract can require each factual claim to carry {claim, source_id, span}. A validator then checks that the source was retrieved, the span exists, and the claim is semantically supported. Hallucination mitigation should treat uncited factual claims as defects, not as style issues.

Citation granularity matters. Page-level links are acceptable for broad reading recommendations, but not for dense manuals, policies, medical guidance, or contract extraction. In those settings, the citation should point to a chunk, paragraph, table row, or bounding box.

Worked support check

Generated claimCited passageVerdictReason
Manager approval is required above 500 EUR.Manager approval is required above 500 EUR.SupportedThe threshold, actor, and requirement match.
Standard shipping is two days.Standard shipping is five days.ContradictedThe citation is about the right topic but gives a different duration.
Premium members always receive refunds.Premium members may request refund review.Not supportedThe claim is stronger than the passage.
The policy changed in 2026.No retrieved span mentions a policy-change date.Missing evidenceA citation cannot support a fact that is absent from the retrieved text.

Lexical overlap would score the shipping example highly because both strings share “standard shipping” and “days.” Citation support is stricter: the cited span must entail the generated claim at the right granularity.

Citation Contract

{
  "claim": "Manager approval is required above 500 EUR.",
  "source_id": "policy-7",
  "span": "Manager approval is required above 500 EUR.",
  "support": "supported"
}

The contract should travel with the answer so RAG evaluation can audit source coverage, unsupported claims, and stale references.

Citation design

Design choiceStronger pattern
Source IDstable document ID plus version, not a transient URL alone.
Locationparagraph, chunk, page, table row, or character span.
Claim mappingcitation attached to each factual claim, not only at the end of a paragraph.
Source metadataretrieval timestamp, document version, jurisdiction, tenant, or validity date.
Validationcheck that cited sources were actually retrieved and packed into context.

Realistic citation failure

Generated answer:

Finance approval is required above 700 EUR. [policy-7]

Source span:

Manager approval is required above 500 EUR. Finance approval is required above 5000 EUR.

The citation is not fabricated, but it is wrong. The source supports manager approval for 700 EUR and contradicts finance approval. A citation validator should mark this as contradicted, not supported. This is why citation quality is stricter than source relevance.

Caveats

Page-level links are too coarse for dense manuals. Citations can also be copied from retrieved context even when the generated sentence says something stronger than the passage. Citation UX can hide uncertainty: a neat footnote may make an unsupported answer look authoritative, so support checks should happen before display.

References