blob: 50482df3d2456b1cd11c581d3b2c13fd3ade8a96 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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
---
```
 
  |