mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-21 06:55:46 +00:00
This previously worked with regular citations, but not author-in-text citations. Now it works with both.
20 lines
268 B
Markdown
20 lines
268 B
Markdown
```
|
|
% pandoc --citeproc --csl command/chicago-fullnote-bibliography.csl -t plain
|
|
---
|
|
references:
|
|
- id: foo
|
|
type: book
|
|
author: John Doe
|
|
title: A Book
|
|
...
|
|
|
|
See @foo [p. 21], as well.
|
|
^D
|
|
See John Doe,[1] as well.
|
|
|
|
John Doe. A Book, n.d.
|
|
|
|
[1] A Book, n.d., 21.
|
|
```
|
|
|