mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 14:15:40 +00:00
In #9275 we made pandoc strip off locator labels (e.g. `p.`) for natbib and biblatex output. In fact, this is only desirable for biblatex. natbib needs the locators to be preserved. Closes #10057.
7 lines
164 B
Markdown
7 lines
164 B
Markdown
```
|
|
% pandoc --natbib -t latex
|
|
We all love the famous proof by @BenjaminHornigold [p. 42].
|
|
^D
|
|
We all love the famous proof by \citet[p.~42]{BenjaminHornigold}.
|
|
```
|