aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-aristotle-anima.md
blob: 88b8881496b6e63cca07e4b83c44ef74073f5534 (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
```
% pandoc -f biblatex -t markdown -s
@comment{

Adapted from biblatex-example.bib


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

(Aristotle 1907)

Aristotle. 1907. *De Anima*. Edited by Robert Drew Hicks. Cambridge:
Cambridge University Press.


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

(Aristotle, 1907)

Aristotle. (1907). *De anima*. (R. D. Hicks, Ed.). Cambridge: Cambridge
University Press.


}

@string{ cup     = {Cambridge University Press} }

@Book{aristotle:anima,
  author       = {Aristotle},
  title        = {De Anima},
  date         = 1907,
  editor       = {Hicks, Robert Drew},
  publisher    = cup,
  location     = {Cambridge},
  keywords     = {primary},
  hyphenation  = {british},
  annotation   = {A book entry with an author and an
                  editor},
}

^D
---
nocite: '[@*]'
references:
- annote: A book entry with an author and an editor
  author:
  - family: Aristotle
  editor:
  - family: Hicks
    given: Robert Drew
  id: 'aristotle:anima'
  issued: 1907
  keyword: primary
  language: 'en-GB'
  publisher: Cambridge University Press
  publisher-place: Cambridge
  title: De anima
  type: book
---


```