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

Adapted from biblatex-example.bib


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

(Goossens, Mittelbach, and Samarin 1994)

Goossens, Michel, Frank Mittelbach, and Alexander Samarin. 1994. *The
LaTeX Companion*. 1st ed. Reading, Mass.: Addison-Wesley.


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

(Goossens, Mittelbach, & Samarin, 1994)

Goossens, M., Mittelbach, F., & Samarin, A. (1994). *The LaTeX
companion* (1st ed.). Reading, Mass.: Addison-Wesley.


}

@Book{companion,
  author       = {Goossens, Michel and Mittelbach, Frank and Samarin, Alexander},
  title        = {The {LaTeX} Companion},
  date         = 1994,
  edition      = 1,
  publisher    = {Addison-Wesley},
  location     = {Reading, Mass.},
  pagetotal    = 528,
  hyphenation  = {american},
  sorttitle    = {LaTeX Companion},
  indextitle   = {LaTeX Companion, The},
  shorttitle   = {LaTeX Companion},
  annotation   = {A book with three authors. Note the formatting of the author
                  list. By default, only the first name is reversed in the
                  bibliography},
}

^D
---
nocite: '[@*]'
references:
- annote: 'A book with three authors. Note the formatting of the author
    list. By default, only the first name is reversed in the
    bibliography'
  author:
  - family: Goossens
    given: Michel
  - family: Mittelbach
    given: Frank
  - family: Samarin
    given: Alexander
  edition: 1
  id: companion
  issued: 1994
  language: 'en-US'
  number-of-pages: 528
  publisher: 'Addison-Wesley'
  publisher-place: 'Reading, Mass.'
  title: The LaTeX companion
  title-short: LaTeX companion
  type: book
---


```