blob: e8f2f7e8e780a26c8af06474b883438acb950b0e (
plain)
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
|
```
% pandoc --citeproc -t markdown-citations
---
references:
- author:
- family: Smith
given: John
id: item1
type: book
- author:
- family: Smith
given: John
id: item2
type: book
---
[@item1; @item2]
^D
(Smith, n.d.a, n.d.b)
::: {#refs .references .csl-bib-body .hanging-indent}
::: {#ref-item1 .csl-entry}
Smith, John. n.d.a.
:::
::: {#ref-item2 .csl-entry}
---------. n.d.b.
:::
:::
```
|