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
|
```
% pandoc --citeproc -t markdown-citations
---
references:
- container-title: Magazine
id: item1
issued:
year: 2012
title: Title A
type: 'article-magazine'
- container-title: Magazine
id: item2
issued:
year: 2012
title: Title B
type: 'article-magazine'
- container-title: Magazine
id: item3
issued:
year: 2012
title: Title C
type: 'article-magazine'
- container-title: Magazine
id: item4
issued:
year: 2012
title: Title D
type: 'article-magazine'
- container-title: Newspaper
id: item5
issued:
year: 2012
title: Title E
type: 'article-magazine'
- container-title: Newspaper
id: item6
issued:
year: 2012
title: Title F
type: 'article-magazine'
---
@item1 [p. 3], @item2, @item3, @item4, @item5, @item6
^D
*Magazine* (2012a, 3), *Magazine* (2012b), *Magazine* (2012c),
*Magazine* (2012d), *Newspaper* (2012a), *Newspaper* (2012b)
::: {#refs .references .csl-bib-body .hanging-indent}
::: {#ref-item1 .csl-entry}
*Magazine*. 2012a. "Title A," 2012.
:::
::: {#ref-item2 .csl-entry}
---------. 2012b. "Title B," 2012.
:::
::: {#ref-item3 .csl-entry}
---------. 2012c. "Title C," 2012.
:::
::: {#ref-item4 .csl-entry}
---------. 2012d. "Title D," 2012.
:::
::: {#ref-item5 .csl-entry}
*Newspaper*. 2012a. "Title E," 2012.
:::
::: {#ref-item6 .csl-entry}
---------. 2012b. "Title F," 2012.
:::
:::
```
|