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

Adapted from biblatex-example.bib


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

(Worman 2002)

Worman, Nancy. 2002. *The Cast of Character: Style in Greek Literature*.
Austin: University of Texas Press.


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

(Worman, 2002)

Worman, N. (2002). *The cast of character: Style in Greek literature*.
Austin: University of Texas Press.


}

@Book{worman,
  author       = {Worman, Nancy},
  title        = {The Cast of Character},
  date         = 2002,
  publisher    = {University of Texas Press},
  location     = {Austin},
  hyphenation  = {american},
  sorttitle    = {Cast of Character},
  indextitle   = {Cast of Character, The},
  subtitle     = {Style in {Greek} Literature},
  shorttitle   = {Cast of Character},
  annotation   = {A book entry. Note the sorttitle and
                  indextitle fields},
}

^D
---
nocite: '[@*]'
references:
- annote: A book entry. Note the sorttitle and indextitle fields
  author:
  - family: Worman
    given: Nancy
  id: worman
  issued: 2002
  language: 'en-US'
  publisher: University of Texas Press
  publisher-place: Austin
  title: 'The cast of character: Style in Greek literature'
  title-short: Cast of character
  type: book
---


```