File: biblatex-moore.md

package info (click to toggle)
haskell-pandoc 3.1.11.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 23,052 kB
  • sloc: haskell: 81,285; xml: 3,855; makefile: 13
file content (56 lines) | stat: -rw-r--r-- 1,026 bytes parent folder | download | duplicates (2)
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
```
% pandoc -f biblatex -t markdown -s
@comment{

Adapted from biblatex-example.bib


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

(Moore 1965)

Moore, Gordon E. 1965. “Cramming More Components onto Integrated
Circuits.” *Electronics* 38 (8): 114–117.


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

(Moore, 1965)

Moore, G. E. (1965). Cramming more components onto integrated circuits.
*Electronics*, *38*(8), 114–117.


}

@Article{moore,
  author       = {Moore, Gordon E.},
  title        = {Cramming more components onto integrated circuits},
  journaltitle = {Electronics},
  year         = 1965,
  volume       = 38,
  number       = 8,
  pages        = {114-117},
  hyphenation  = {american},
}

^D
---
nocite: "[@*]"
references:
- author:
  - family: Moore
    given: Gordon E.
  container-title: Electronics
  id: moore
  issue: 8
  issued: 1965
  language: en-US
  page: 114-117
  title: Cramming more components onto integrated circuits
  type: article-journal
  volume: 38
---


```