mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-29 01:41:20 +08:00
a92e43575f
`\autocites{a1}{a2}{a3}` will not collapse the entries.
So, if we don't have prefixes and suffixes, we use instead
`\autocite{a1;a2;a3}`.
Closes #4960.
23 lines
254 B
Markdown
23 lines
254 B
Markdown
```
|
|
% pandoc -t latex --biblatex
|
|
[@a1;@a2;@a3]
|
|
^D
|
|
\autocite{a1,a2,a3}
|
|
```
|
|
|
|
```
|
|
% pandoc -t latex --biblatex
|
|
@a1 [@a2;@a3]
|
|
^D
|
|
\textcite{a1,a2,a3}
|
|
```
|
|
|
|
```
|
|
% pandoc -t latex --biblatex
|
|
[@a1, blah; @a2; see @a3]
|
|
^D
|
|
\autocites[blah]{a1}{a2}[see][]{a3}
|
|
```
|
|
|
|
|