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:
(Moore 1998)
Moore, Gordon E. 1998. “Cramming More Components onto Integrated
Circuits.” *Proceedings of the IEEE* 86 (1): 82–85.
Formatted with pandoc and apa.csl, 2013-10-23:
(Moore, 1998)
Moore, G. E. (1998). Cramming more components onto integrated circuits.
*Proceedings of the IEEE*, *86*(1), 82–85.
NOTES:
- "related = {moore}, relatedtype = {reprintfrom}," – no equivalent implemented in CSL
}
@Article{moore:related,
  author       = {Moore, Gordon E.},
  title        = {Cramming more components onto integrated circuits},
  journaltitle = {Proceedings of the {IEEE}},
  year         = 1998,
  volume       = 86,
  number       = 1,
  pages        = {82-85},
  hyphenation  = {american},
  related      = {moore},
  relatedtype  = {reprintfrom},
  annotation   = {A reprint of Moore's law. Note the related and
                  relatedtype fields},
}
^D
---
nocite: "[@*]"
references:
- annote: A reprint of Moore's law. Note the related and relatedtype
    fields
  author:
  - family: Moore
    given: Gordon E.
  container-title: Proceedings of the IEEE
  id: "moore:related"
  issue: 1
  issued: 1998
  language: en-US
  page: 82-85
  title: Cramming more components onto integrated circuits
  type: article-journal
  volume: 86
---
```
 
  |