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

Adapted from biblatex-example.bib


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

(Nussbaum 1978)

Nussbaum, Martha. 1978. *Aristotle’s “De Motu Animalium”*. Princeton:
Princeton University Press.


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

(Nussbaum, 1978)

Nussbaum, M. (1978). *Aristotle’s “De Motu Animalium”*. Princeton:
Princeton University Press.


}

@string{ pup     = {Princeton University Press} }

@Book{nussbaum,
  author       = {Nussbaum, Martha},
  title        = {Aristotle's \mkbibquote{De Motu Animalium}},
  date         = 1978,
  publisher    = pup,
  location     = {Princeton},
  keywords     = {secondary},
  hyphenation  = {american},
  sorttitle    = {Aristotle's De Motu Animalium},
  indexsorttitle= {Aristotle's De Motu Animalium},
  annotation   = {A book entry. Note the sorttitle and
                  indexsorttitle fields and the markup of the quotes in
                  the database file},
}

^D
---
nocite: '[@*]'
references:
- annote: A book entry. Note the sorttitle and indexsorttitle fields and
    the markup of the quotes in the database file
  author:
  - family: Nussbaum
    given: Martha
  id: nussbaum
  issued: 1978
  keyword: secondary
  language: 'en-US'
  publisher: Princeton University Press
  publisher-place: Princeton
  title: 'Aristotle''s "De Motu Animalium"'
  type: book
---


```