1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
```
% pandoc --citeproc -t markdown-citations
---
references:
- author:
- family: Author
given: Al
id: item1
issued:
date-parts:
- - 1998
title: 'foo bar baz: bazbaz bar foo'
type: 'article-journal'
- author:
- family: Author
given: Al
id: item2
issued:
date-parts:
- - 1998
title: 'foo bar baz: the bazbaz bar foo'
type: 'article-journal'
- author:
- family: Author
given: Al
id: item3
issued:
date-parts:
- - 1998
title: 'foo bar baz: a bazbaz bar foo'
type: 'article-journal'
- author:
- family: Author
given: Al
id: item4
issued:
date-parts:
- - 1998
title: 'foo bar baz: an abazbaz bar foo'
type: 'article-journal'
---
@item1, @item2, @item3, @item4
^D
Author (1998c), Author (1998d), Author (1998a), Author (1998b)
::: {#refs .references .csl-bib-body .hanging-indent entry-spacing="0"}
::: {#ref-item3 .csl-entry}
Author, Al. 1998a. "Foo Bar Baz: A Bazbaz Bar Foo."
:::
::: {#ref-item4 .csl-entry}
---------. 1998b. "Foo Bar Baz: An Abazbaz Bar Foo."
:::
::: {#ref-item1 .csl-entry}
---------. 1998c. "Foo Bar Baz: Bazbaz Bar Foo."
:::
::: {#ref-item2 .csl-entry}
---------. 1998d. "Foo Bar Baz: The Bazbaz Bar Foo."
:::
:::
```
|