aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-weinberg.md
blob: 5048122ed1490f52e8a07dc90da29318dcbe26af (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:

(Weinberg 1967)

Weinberg, Steven. 1967. “A Model of Leptons.” *Phys. Rev. Lett.* 19:
1264–1266.


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

(Weinberg, 1967)

Weinberg, S. (1967). A model of leptons. *Phys. Rev. Lett.*, *19*,
1264–1266.


}

@Article{weinberg,
  author       = {Weinberg, Steven},
  title        = {A Model of Leptons},
  journaltitle = {Phys.~Rev.~Lett.},
  date         = 1967,
  volume       = 19,
  pages        = {1264-1266},
}

^D
---
nocite: '[@*]'
references:
- author:
  - family: Weinberg
    given: Steven
  container-title: Phys. Rev. Lett.
  id: weinberg
  issued: 1967
  page: '1264-1266'
  title: A model of leptons
  type: 'article-journal'
  volume: 19
---


```