aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-maron.md
blob: ffa100e18e54c1704d22b58d78660252356544f4 (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:

(Maron 2000)

Maron, Monika. 2000. *Animal Triste*. Translated by Brigitte Goldstein.
Lincoln: University of Nebraska Press.


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

(Maron, 2000)

Maron, M. (2000). *Animal triste*. (B. Goldstein, Trans.). Lincoln:
University of Nebraska Press.


NOTES:

-   origlanguage concatenated with translator, e.g. “translated from the German by …” not possible in CSL

}

@Book{maron,
  author       = {Maron, Monika},
  title        = {Animal Triste},
  date         = 2000,
  translator   = {Brigitte Goldstein},
  origlanguage = {german},
  publisher    = {University of Nebraska Press},
  location     = {Lincoln},
  hyphenation  = {american},
  shorttitle   = {Animal Triste},
  annotation   = {An English translation of a German novel with a French title.
                  In other words: a book entry with a
                  translator field.  Note the origlanguage
                  field which is concatenated with the translator},
}

^D
---
nocite: "[@*]"
references:
- annote: "An English translation of a German novel with a French title.
    In other words: a book entry with a translator field. Note the
    origlanguage field which is concatenated with the translator"
  author:
  - family: Maron
    given: Monika
  id: maron
  issued: 2000
  language: en-US
  publisher: University of Nebraska Press
  publisher-place: Lincoln
  title: Animal triste
  title-short: Animal triste
  translator:
  - family: Goldstein
    given: Brigitte
  type: book
---


```