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
|
```
% pandoc --citeproc -t markdown-citations
---
csl: command/apa.csl
references:
- author:
- family: Doe
given: John
id: test
issued:
date-parts:
- - 2006
title: Test
type: 'article-journal'
volume: 81
---
[@test, p. 6]
[@test, chap. 6]
[@test, n. 6]
[@test, pp. 34-36, 38-39]
[@test, sec. 3]
[@test, p.3]
[@test, 33-35, 38-39]
[@test, 14]
[@test bk. VI]
[@test, no. 6]
[@test, nos. 6 and 7]
^D
(Doe, 2006, p. 6)
(Doe, 2006, Chapter 6)
(Doe, 2006, n. 6)
(Doe, 2006, pp. 34--36, 38--39)
(Doe, 2006, sec. 3)
(Doe, 2006, p. 3)
(Doe, 2006, pp. 33--35, 38--39)
(Doe, 2006, p. 14)
(Doe, 2006, bk. VI)
(Doe, 2006, no. 6)
(Doe, 2006, no. 6 and 7)
::: {#refs .references .csl-bib-body .hanging-indent entry-spacing="0" line-spacing="2"}
::: {#ref-test .csl-entry}
Doe, J. (2006). Test, *81*.
:::
:::
```
|