mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 13:15:51 +00:00
This solves the problem of unwanted capitalization of names at the beginning of citations in footnotes. Closes #10983.
23 lines
334 B
Markdown
23 lines
334 B
Markdown
```
|
|
% pandoc --citeproc --csl command/chicago-fullnote-bibliography.csl -t plain
|
|
---
|
|
references:
|
|
- id: test4
|
|
type: blog-post
|
|
title: "Username as author"
|
|
author:
|
|
- brtw
|
|
container-title: "Reddit"
|
|
issued:
|
|
year: 2004
|
|
suppress-bibliography: true
|
|
...
|
|
|
|
[@test4]
|
|
^D
|
|
[1]
|
|
|
|
[1] brtw, “Username as Author,” Reddit, 2004.
|
|
|
|
```
|