aboutsummaryrefslogtreecommitdiff
path: root/test/command/pandoc-citeproc-77.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/pandoc-citeproc-77.md')
-rw-r--r--test/command/pandoc-citeproc-77.md67
1 files changed, 67 insertions, 0 deletions
diff --git a/test/command/pandoc-citeproc-77.md b/test/command/pandoc-citeproc-77.md
new file mode 100644
index 000000000..d7090edb4
--- /dev/null
+++ b/test/command/pandoc-citeproc-77.md
@@ -0,0 +1,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-item3 .csl-entry}
+Humboldt, Alexander von, n.d.
+:::
+
+::: {#ref-item2 .csl-entry}
+van Gogh, Vincent, 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.
+```