pandoc/test/command/7826.md

79 lines
1.9 KiB
Markdown
Raw Normal View History

```
% pandoc -t plain --citeproc
---
bibliography: command/biblio.bib
suppress-bibliography: true
csl: command/american-medical-association.csl
notes-after-punctuation: true
---
In numerous recent works [@item1; @item2], statistician
Foo and Bar have criticized XXX.
^D
In numerous recent works,^(1,2) statistician Foo and Bar have criticized
XXX.
```
```
% pandoc -t plain --citeproc
---
bibliography: command/biblio.bib
suppress-bibliography: true
csl: command/american-medical-association.csl
---
In numerous recent works [@item1; @item2], statistician
Foo and Bar have criticized XXX.
^D
In numerous recent works^(1,2), statistician Foo and Bar have criticized
XXX.
```
```
% pandoc -t plain --citeproc
---
bibliography: command/biblio.bib
suppress-bibliography: true
csl: command/chicago-fullnote-bibliography.csl
notes-after-punctuation: false
---
In numerous recent works [@item1; @item2], statistician
Foo and Bar have criticized XXX.
^D
In numerous recent works[1], statistician Foo and Bar have criticized
XXX.
[1] John Doe, First Book (Cambridge: Cambridge University Press, 2005);
John Doe, “Article,” Journal of Generic Studies 6 (2006): 3334.
```
```
% pandoc -t plain --citeproc
---
bibliography: command/biblio.bib
suppress-bibliography: true
csl: command/chicago-fullnote-bibliography.csl
---
In numerous recent works [@item1; @item2], statistician
Foo and Bar have criticized XXX.
^D
In numerous recent works,[1] statistician Foo and Bar have criticized
XXX.
[1] John Doe, First Book (Cambridge: Cambridge University Press, 2005);
John Doe, “Article,” Journal of Generic Studies 6 (2006): 3334.
```
```
% pandoc -t plain --citeproc
---
bibliography: command/biblio.bib
suppress-bibliography: true
notes-after-punctuation: true
---
In numerous recent works [@item1; @item2], statistician
Foo and Bar have criticized XXX.
^D
In numerous recent works (Doe 2005, 2006), statistician Foo and Bar have
criticized XXX.
```