aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-knuth-ct.md
blob: 856fe54f7e15158537fe8fe26eeb1cf3ec2f089e (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
```
% pandoc -f biblatex -t markdown -s
@comment{

Adapted from biblatex-example.bib


Formatted with pandoc and chicago-author-date.csl, 2013-10-23:

(Knuth 1984–1986)

Knuth, Donald E. 1984–1986. *Computers & Typesetting*. 5. Reading,
Mass.: Addison-Wesley.


Formatted with pandoc and apa.csl, 2013-10-23:

(Knuth, 1984–1986)

Knuth, D. E. (1984–1986). *Computers & typesetting* (1-5). Reading,
Mass.: Addison-Wesley.


NOTES:

- citeproc
	- term "vols." is missing

}

@Book{knuth:ct,
  author       = {Knuth, Donald E.},
  title        = {Computers \& Typesetting},
  date         = {1984/1986},
  volumes      = 5,
  publisher    = {Addison-Wesley},
  location     = {Reading, Mass.},
  hyphenation  = {american},
  sortyear     = {1984-0},
  sorttitle    = {Computers & Typesetting},
  indexsorttitle= {Computers & Typesetting},
  annotation   = {A five-volume book cited as a whole. This is a book
                  entry, note the volumes field},
}

^D
---
nocite: '[@*]'
references:
- annote: 'A five-volume book cited as a whole. This is a book entry,
    note the volumes field'
  author:
  - family: Knuth
    given: Donald E.
  id: 'knuth:ct'
  issued: 1984/1986
  language: 'en-US'
  number-of-volumes: 5
  publisher: 'Addison-Wesley'
  publisher-place: 'Reading, Mass.'
  title: 'Computers & typesetting'
  type: book
---


```