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
65
66
67
|
```
% pandoc --citeproc -t markdown-citations
---
csl: 'command/chicago-fullnote-bibliography.csl'
references:
- author:
- family: Doe
given: 'John, III'
parse-names: true
id: item1
type: book
- author:
- family: van Gogh
given: Vincent
parse-names: true
id: item2
type: book
- author:
- family: Humboldt
given: Alexander von
parse-names: true
id: item3
type: book
- author:
- family: Bennett
given: 'Frank G.,! Jr.'
parse-names: true
id: item4
type: book
- author:
- family: Dumboldt
given: 'Ezekiel, III'
parse-names: true
id: item5
type: book
---
[@item1; @item2; @item3; @item4; @item5]
^D
[^1]
::: {#refs .references .csl-bib-body .hanging-indent}
::: {#ref-item4 .csl-entry}
Bennett, Frank G., Jr., n.d.
:::
::: {#ref-item1 .csl-entry}
Doe, John, III, n.d.
:::
::: {#ref-item5 .csl-entry}
Dumboldt, Ezekiel, III, n.d.
:::
::: {#ref-item2 .csl-entry}
Gogh, Vincent van, n.d.
:::
::: {#ref-item3 .csl-entry}
Humboldt, Alexander von, n.d.
:::
:::
[^1]: John Doe III, n.d.; Vincent van Gogh, n.d.; Alexander von
Humboldt, n.d.; Frank G. Bennett, Jr., n.d.; Ezekiel Dumboldt III,
n.d.
```
|