diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2021-04-04 11:51:44 -0700 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2021-04-17 16:15:13 -0700 | 
| commit | ff5a5048091b765ed15750ccb5ea30f9459ba33a (patch) | |
| tree | d32ee3960665716fb0f3e0ab3b73727f0f6055ad /test | |
| parent | 5f79a66ed64e9b0cc326e467dcb17239f1596fcc (diff) | |
| download | pandoc-ff5a5048091b765ed15750ccb5ea30f9459ba33a.tar.gz | |
Use new citeproc + unicode-collation.
Add command test for unicode-collation.
Diffstat (limited to 'test')
| -rw-r--r-- | test/command/unicode-collation.md | 130 | 
1 files changed, 130 insertions, 0 deletions
| diff --git a/test/command/unicode-collation.md b/test/command/unicode-collation.md new file mode 100644 index 000000000..a53ed7577 --- /dev/null +++ b/test/command/unicode-collation.md @@ -0,0 +1,130 @@ +``` +% pandoc --citeproc -t plain +--- +lang: en-US +csl: command/apa.csl +references: +- id: a1 +  type: book +  author: +  - family: Ubina +    given: A. John +  issued: 1985 +- id: a2 +  type: book +  author: +  - family: Über +    given: Aglaia +  issued: 1996 +- id: a3 +  type: book +  author: +  - family: Oñate +    given: José +  issued: 1985 +- id: a4 +  type: book +  author: +  - family: Onush +    given: Frank +  issued: 2002 +- id: a5 +  type: book +  author: +  - family: O'Neil +    given: Timothy +  issued: 2010 +--- + +[@a1;@a2;@a3;@a4;@a5] +^D +(O’Neil, 2010; Oñate, 1985; Onush, 2002; Über, 1996; Ubina, 1985) + +O’Neil, T. (2010). + +Oñate, J. (1985). + +Onush, F. (2002). + +Über, A. (1996). + +Ubina, A. J. (1985). +``` + +``` +% pandoc --citeproc -t plain +--- +lang: es +csl: command/apa.csl +references: +- id: a1 +  type: book +  author: +  - family: Ubina +    given: A. John +  issued: 1985 +- id: a2 +  type: book +  author: +  - family: Über +    given: Aglaia +  issued: 1996 +- id: a3 +  type: book +  author: +  - family: Oñate +    given: José +  issued: 1985 +- id: a4 +  type: book +  author: +  - family: Onush +    given: Frank +  issued: 2002 +- id: a5 +  type: book +  author: +  - family: O'Neil +    given: Timothy +  issued: 2010 +--- + +[@a1;@a2;@a3;@a4;@a5] +^D +(O’Neil, 2010; Onush, 2002; Oñate, 1985; Über, 1996; Ubina, 1985) + +O’Neil, T. (2010). + +Onush, F. (2002). + +Oñate, J. (1985). + +Über, A. (1996). + +Ubina, A. J. (1985). +``` + +``` +% pandoc -C -t plain +--- +nocite: '@*' +lang: fr +references: +- id: cote +  author: cote +- id: côte +  author: côte +- id: coté +  author: coté +- id: côté +  author: côté +... +^D +cote. s. d. + +côte. s. d. + +coté. s. d. + +côté. s. d. +``` | 
