aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-kullback.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/biblatex-kullback.md')
-rw-r--r--test/command/biblatex-kullback.md52
1 files changed, 52 insertions, 0 deletions
diff --git a/test/command/biblatex-kullback.md b/test/command/biblatex-kullback.md
new file mode 100644
index 000000000..333128acf
--- /dev/null
+++ b/test/command/biblatex-kullback.md
@@ -0,0 +1,52 @@
+```
+% pandoc -f biblatex -t markdown -s
+@comment{
+
+Adapted from biblatex-example.bib
+
+
+Formatted with pandoc and chicago-author-date.csl, 2013-10-23:
+
+(Kullback 1959)
+
+Kullback, Solomon. 1959. *Information Theory and Statistics*. New York:
+John Wiley & Sons.
+
+
+Formatted with pandoc and apa.csl, 2013-10-23:
+
+(Kullback, 1959)
+
+Kullback, S. (1959). *Information theory and statistics*. New York: John
+Wiley & Sons.
+
+
+}
+
+@Book{kullback,
+ author = {Kullback, Solomon},
+ title = {Information Theory and Statistics},
+ year = 1959,
+ publisher = {John Wiley \& Sons},
+ location = {New York},
+ hyphenation = {american},
+}
+
+^D
+---
+nocite: '[@*]'
+references:
+- author:
+ - family: Kullback
+ given: Solomon
+ id: kullback
+ issued: 1959
+ language: 'en-US'
+ publisher: 'John Wiley & Sons'
+ publisher-place: New York
+ title: Information theory and statistics
+ type: book
+---
+
+
+```