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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
```
% pandoc -f markdown -t plain --citeproc
---
csl: command/chicago-fullnote-bibliography.csl
references:
- author:
- family: Wandt
given: Manfred
edition: 6
id: wandt2014ges-sv
issued: 2014
publisher: Franz Vahlen
publisher-place: München
title: Gesetzliche schuldverhältnisse
title-short: Gesetzl SV
type: book
- author:
- family: Smith
given: Zenda
edition: 6
id: smith2015
issued: 2015
publisher: Macmillan
publisher-place: New York
title: A verb and a noun
type: book
---
Hi^[@wandt2014ges-sv.].
Hi^[[@wandt2014ges-sv].].
Hi^[[See also @wandt2014ges-sv].].
Hi^[See also @wandt2014ges-sv.].
Hi^[@wandt2014ges-sv [@smith2015].].
Hi^[[@wandt2014ges-sv; @smith2015].].
Hi [@wandt2014ges-sv].
Hi [see also @wandt2014ges-sv].
^D
Hi[1].
Hi[2].
Hi[3].
Hi[4].
Hi[5].
Hi[6].
Hi.[7]
Hi.[8]
Smith, Zenda. A Verb and a Noun. 6th ed. New York: Macmillan, 2015.
Wandt, Manfred. Gesetzliche Schuldverhältnisse. 6th ed. München: Franz
Vahlen, 2014.
[1] Manfred Wandt, Gesetzliche Schuldverhältnisse, 6th ed. (München:
Franz Vahlen, 2014).
[2] Wandt.
[3] See also Wandt.
[4] See also Wandt.
[5] Wandt, Zenda Smith, A Verb and a Noun, 6th ed. (New York: Macmillan,
2015).
[6] Wandt, Gesetzl SV; Smith, A Verb and a Noun.
[7] Wandt, Gesetzl SV.
[8] See also Wandt.
```
|