2021-08-14 03:13:06 +02:00
|
|
|
|
```
|
|
|
|
|
% pandoc --citeproc -Mlang=it-IT -t markdown-citations
|
|
|
|
|
Foo [@a 50: «Disse: "bar"»]. «Disse: "baz"»
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
suppress-bibliography: true
|
|
|
|
|
references:
|
|
|
|
|
- id: a
|
|
|
|
|
author:
|
|
|
|
|
- literal: Aristotele
|
|
|
|
|
title: Metafisica
|
|
|
|
|
type: book
|
|
|
|
|
...
|
|
|
|
|
^D
|
|
|
|
|
Foo (Aristotele, s.d., 50: «Disse: "bar"»). «Disse: "baz"»
|
|
|
|
|
```
|
2021-08-14 04:19:43 +02:00
|
|
|
|
|
2021-08-15 18:26:30 +02:00
|
|
|
|
The Quoted is passed to citeproc as a Span ("",["csl-quoted"],[])
|
|
|
|
|
so that flipflopping and localization occur.
|
2021-08-14 04:19:43 +02:00
|
|
|
|
```
|
|
|
|
|
% pandoc -C -t plain -Mlang=en
|
|
|
|
|
---
|
|
|
|
|
references:
|
|
|
|
|
- id: a
|
|
|
|
|
author:
|
|
|
|
|
- literal: Aristotele
|
|
|
|
|
title: Metafisica et "Physica"
|
|
|
|
|
type: article-journal
|
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
Foo [@a 50].
|
|
|
|
|
^D
|
|
|
|
|
Foo (Aristotele, n.d., 50).
|
|
|
|
|
|
|
|
|
|
Aristotele. n.d. “Metafisica Et ‘Physica’.”
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
% pandoc -C -t plain -Mlang=it
|
|
|
|
|
---
|
|
|
|
|
references:
|
|
|
|
|
- id: a
|
|
|
|
|
author:
|
|
|
|
|
- literal: Aristotele
|
|
|
|
|
title: Metafisica et "Physica"
|
|
|
|
|
type: article-journal
|
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
Foo [@a 50].
|
|
|
|
|
^D
|
|
|
|
|
Foo (Aristotele, s.d., 50).
|
|
|
|
|
|
|
|
|
|
Aristotele. s.d. «Metafisica et “Physica”».
|
|
|
|
|
```
|
|
|
|
|
|