File: pandoc-citeproc-292.md

package info (click to toggle)
haskell-pandoc 3.1.11.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 23,052 kB
  • sloc: haskell: 81,285; xml: 3,855; makefile: 13
file content (43 lines) | stat: -rw-r--r-- 625 bytes parent folder | download | duplicates (2)
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
```
% pandoc --citeproc -t markdown-citations
---
csl: 'command/sage-harvard.csl'
references:
- author:
    family: Doe
  id: doe
  issued:
    year: 2007
  type: article
- author:
    family: Zoe
  id: zoe
  issued:
  - year: 2009
  type: article
- author:
    family: Roe
  id: roe
  issued:
  - year: 2007
  type: article
---

[@zoe; @roe; see for comparison @doe, p. 3]
^D
(Roe, 2007; Zoe, 2009; see for comparison Doe, 2007: 3)

::: {#refs .references .csl-bib-body .hanging-indent}
::: {#ref-doe .csl-entry}
Doe (2007).
:::

::: {#ref-roe .csl-entry}
Roe (2007).
:::

::: {#ref-zoe .csl-entry}
Zoe (2009).
:::
:::
```