mirror of
https://github.com/typst/typst
synced 2025-05-19 03:25:27 +08:00
36 lines
1.0 KiB
Typst
36 lines
1.0 KiB
Typst
// Test citations and bibliographies.
|
|
|
|
---
|
|
// Test ambiguous reference.
|
|
= Introduction <arrgh>
|
|
// Error: 1-7 label occurs in the document and its bibliography
|
|
@arrgh
|
|
#bibliography("/works.bib")
|
|
|
|
---
|
|
#set page(width: 200pt)
|
|
= Details
|
|
See also #cite("arrgh", "distress", [p. 22]), @arrgh[p. 4], and @distress[p. 5].
|
|
#bibliography("/works.bib")
|
|
|
|
---
|
|
// Test unconventional order.
|
|
#set page(width: 200pt)
|
|
#bibliography("/works.bib", title: [Works to be cited], style: "chicago-author-date")
|
|
#line(length: 100%)
|
|
#[#set cite(brackets: false)
|
|
As described by @netwok],
|
|
the net-work is a creature of its own.
|
|
This is close to piratery! @arrgh
|
|
And quark! @quark
|
|
|
|
---
|
|
// Error: 15-43 duplicate bibliography keys: arrgh, distress, glacier-melt, issue201, mcintosh_anxiety, netwok, psychology25, quark, restful, sharing, tolkien54
|
|
#bibliography(("/works.bib", "/works.bib"))
|
|
|
|
---
|
|
#set page(width: 200pt)
|
|
= Multiple Bibs
|
|
Now we have multiple bibliographies containing #cite("glacier-melt", "keshav2007read")
|
|
#bibliography(("/works.bib", "/works_too.bib"))
|