aboutsummaryrefslogtreecommitdiff
path: root/test/command/biblatex-266.md
blob: 24de45d954dabd6da32d6ac8864536561bb9fec6 (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
```
% pandoc -f biblatex -t markdown -s
@book{goethe2005,
  langid = {german},
  location = {{Frankfurt am Main}},
  title = {Not A Real Book},
  date = {2005},
  author = {family=Goethe, given=Johann Wolfgang, prefix=von, useprefix=false and given=Antonie, prefix=van, family=Leeuwenhoek, useprefix=true}, editor = {Schöne, Albrecht}
}

^D
---
nocite: '[@*]'
references:
- author:
  - dropping-particle: von
    family: Goethe
    given: Johann Wolfgang
  - family: Leeuwenhoek
    given: Antonie
    non-dropping-particle: van
  editor:
  - family: Schöne
    given: Albrecht
  id: goethe2005
  issued: 2005
  language: 'de-DE'
  publisher-place: Frankfurt am Main
  title: Not A Real Book
  type: book
---


```