b0cd6c6224
If inline references are used (in the metadata `references` field), we should still only include in the bibliography items that are actually cited -- unless `nocite` is used. Closes #7376.
20 lines
240 B
Markdown
20 lines
240 B
Markdown
```
|
|
% pandoc --citeproc -t markdown-citations
|
|
---
|
|
references:
|
|
- author:
|
|
- family: Alice
|
|
id: foo
|
|
issued:
|
|
- year: 2042
|
|
other-ids:
|
|
- bar
|
|
- doz
|
|
type: book
|
|
---
|
|
|
|
[@bar]
|
|
^D
|
|
[WARNING] Citeproc: citation bar not found
|
|
(**bar?**)
|
|
```
|