diff options
| author | Lars Wrenger <lars@wrenger.net> | 2023-03-31 18:41:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-31 18:41:17 +0200 |
| commit | 631ba40e57b4f121fe9335f334a76dd9c81de088 (patch) | |
| tree | 91b53660a23290a67b547f7623e21dcb0e426c11 /tests/typ/meta/bibliography.typ | |
| parent | 4161bad54f690e77f53ca1f0f4426161e60fa4ce (diff) | |
Support for multiple bib files in a bibliography (#296)
Diffstat (limited to 'tests/typ/meta/bibliography.typ')
| -rw-r--r-- | tests/typ/meta/bibliography.typ | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/typ/meta/bibliography.typ b/tests/typ/meta/bibliography.typ index f1dbe3c8..82cd3a58 100644 --- a/tests/typ/meta/bibliography.typ +++ b/tests/typ/meta/bibliography.typ @@ -1,7 +1,7 @@ // Test citations and bibliographies. --- -// Error: 15-25 failed to parse biblatex file: wrong number of digits in line 5 +// Error: 15-25 parsing failed at ../assets/files/bad.bib:5: wrong number of digits #bibliography("/bad.bib") --- @@ -27,3 +27,13 @@ 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")) |
