aboutsummaryrefslogtreecommitdiff
path: root/test/command/citeproc-20.md
blob: 0c4f7abf21eb2e504d06baca986a0de6ee5051ca (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
```
% pandoc --citeproc -t plain
Lorem ipsum dolor sit amet^[Consectetur adipisicing elit: «sed do eiusmod tempor incididunt» [@doe_1989, 15].].

---
csl: command/chicago-fullnote-bibliography.csl
suppress-bibliography: true
references:
- id: doe_1989
  author:
    - family: Doe
      given: John
  issued:
    - year: 1989
  publisher: ABC
  publisher-place: New York
  title: Tempor
  type: book
...
^D
Lorem ipsum dolor sit amet[1].

[1] Consectetur adipisicing elit: «sed do eiusmod tempor incididunt»
(John Doe, Tempor (New York: ABC, 1989), 15).
```