aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-reese.md
blob: 884b329053db6616d77bcc4c777330601e95699a (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
67
68
69
70
71
```
% pandoc -f biblatex -t markdown -s
@comment{

Adapted from biblatex-example.bib


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

(Reese 1958)

Reese, Trevor R. 1958. “Georgia in Anglo-Spanish Diplomacy, 1736-1739.”
*William and Mary Quarterly, 3* 15: 168–190.


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

(Reese, 1958)

Reese, T. R. (1958). Georgia in Anglo-Spanish diplomacy, 1736-1739.
*William and Mary Quarterly, 3*, *15*, 168–190.


NOTES:

- biblio2yaml
	- series field: still not entirely satisfactory.
	  Could we map this to some existing CSL variable, and have the CSL styles handle this? "edition", maybe ??

}

@Article{reese,
  author       = {Reese, Trevor R.},
  title        = {Georgia in {Anglo-Spanish} Diplomacy, 1736-1739},
  journaltitle = {William and Mary Quarterly},
  date         = 1958,
  series       = 3,
  volume       = 15,
  pages        = {168-190},
  hyphenation  = {american},
  annotation   = {An article entry with a series and a
                  volume field. Note the format of the series. If the
                  value of the series field is an integer, this number
                  is printed as an ordinal and the string \enquote*{series} is
                  appended automatically},
}

^D
---
nocite: '[@*]'
references:
- annote: 'An article entry with a series and a volume field. Note the
    format of the series. If the value of the series field is an
    integer, this number is printed as an ordinal and the string
    ''series'' is appended automatically'
  author:
  - family: Reese
    given: Trevor R.
  collection-title: 3rd series
  container-title: William and Mary Quarterly
  id: reese
  issued: 1958
  language: 'en-US'
  page: '168-190'
  title: 'Georgia in Anglo-Spanish diplomacy, 1736-1739'
  type: 'article-journal'
  volume: 15
---


```