pandoc/test/command/7826.md
2022-01-13 08:41:05 -08:00

78 lines
1.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

```
% 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.
```