-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
citeproc - improved removal of final period...
...in citations inside notes in note-based styles. These citations are put in parentheses, but the final period must be removed. See jgm/citeproc#20
- Loading branch information
Showing
2 changed files
with
33 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
``` | ||
% pandoc --citeproc -t plain | ||
Lorem ipsum dolor sit amet^[Consectetur adipisicing elit: «sed do eiusmod tempor incididunt» [@doe_1989, 15].]. | ||
--- | ||
csl: command/chicago-fullnote-bibliography.csl | ||
suppress-bibliography: true | ||
references: | ||
- id: doe_1989 | ||
author: | ||
- family: Doe | ||
given: John | ||
issued: | ||
- year: 1989 | ||
publisher: ABC | ||
publisher-place: New York | ||
title: Tempor | ||
type: book | ||
... | ||
^D | ||
Lorem ipsum dolor sit amet[1]. | ||
[1] Consectetur adipisicing elit: «sed do eiusmod tempor incididunt» | ||
(John Doe, Tempor (New York: ABC, 1989), 15). | ||
``` |