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
  | 
```
% pandoc -f biblatex -t markdown -s
@comment{
Adapted from biblatex-example.bib
Formatted with pandoc and chicago-author-date.csl, 2013-10-23:
(Hammond 1997)
Hammond, Christopher. 1997. *The Basics of Crystallography and
Diffraction*. Oxford: International Union of Crystallography; Oxford
University Press.
Formatted with pandoc and apa.csl, 2013-10-23:
(Hammond, 1997)
Hammond, C. (1997). *The basics of crystallography and diffraction*.
Oxford: International Union of Crystallography; Oxford University Press.
}
@Book{hammond,
  author       = {Hammond, Christopher},
  title        = {The basics of crystallography and diffraction},
  date         = 1997,
  publisher    = {International Union of Crystallography and Oxford University
                  Press},
  location     = {Oxford},
  hyphenation  = {british},
  sorttitle    = {Basics of crystallography and diffraction},
  indextitle   = {Basics of crystallography and diffraction, The},
  shorttitle   = {Crystallography and diffraction},
  annotation   = {A book entry. Note the sorttitle and
                  indextitle fields as well as the format of the
                  publisher field},
}
^D
---
nocite: "[@*]"
references:
- annote: A book entry. Note the sorttitle and indextitle fields as well
    as the format of the publisher field
  author:
  - family: Hammond
    given: Christopher
  id: hammond
  issued: 1997
  language: en-GB
  publisher: International Union of Crystallography; Oxford University
    Press
  publisher-place: Oxford
  title: The basics of crystallography and diffraction
  title-short: Crystallography and diffraction
  type: book
---
```
 
  |