blob: 24f7375e4d96a7ca469813804c4b6fcde0bc02c3 (
plain) (
blame)
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
|
```
% pandoc --citeproc -t markdown-citations
---
csl: 'command/chicago-note-bibliography.csl'
references:
- author:
family: Author
given:
- Ann
container-title: Journal
id: item1
issued:
- year: 2011
title: Title
type: 'article-newspaper'
---
Foo [@item1].
^D
Foo.[^1]
:::: {#refs .references .csl-bib-body .hanging-indent entry-spacing="0"}
::: {#ref-item1 .csl-entry}
Author, Ann. "Title." *Journal*, 2011.
:::
::::
[^1]: Author, "Title."
```
|