aboutsummaryrefslogtreecommitdiff
path: root/test/command/pandoc-citeproc-31.md
blob: 91aaa8f0bed1e477202f92cd43a98182da27c390 (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
```
% pandoc --citeproc -t markdown-citations
---
csl: command/oscola.csl
references:
- DOI: 10.1086/504343
  author:
  - family: Olson
    given: Hope A.
  container-title: Library Quarterly
  id: item1
  issue: 1
  issued:
    date-parts:
    - - 2006
  page: '19-35'
  title: 'Codes, costs, and critiques: The organization of information
    in *Library Quarterly*, 1931--2004'
  title-short: 'Codes, costs, and critiques'
  type: 'article-magazine'
  volume: 76
- id: item2
  title: Second title
---

Foo [@item1]. Bar [@item2]. Baz [@item1].
^D
Foo.[^1] Bar.[^2] Baz.[^3]

::: {#refs .references .csl-bib-body}
::: {#ref-item1 .csl-entry}
Olson HA, '[Codes, Costs, and Critiques: The Organization of Information
in *Library Quarterly*, 1931--2004](https://doi.org/10.1086/504343)'
(2006) 76 *Library Quarterly* 19
:::

::: {#ref-item2 .csl-entry}
'Second Title'
:::
:::

[^1]: Hope A Olson, 'Codes, Costs, and Critiques: The Organization of
    Information in *Library Quarterly*, 1931--2004' (2006) 76 *Library
    Quarterly* 19.

[^2]: 'Second Title'.

[^3]: Olson (n 1).
```