Bibtex DOIs
### Discussed in https://github.com/jgm/pandoc/discussions/11616
<div type='discussions-op-text'>
<sup>Originally posted by **twsh** May 4, 2026</sup>
If I have some JSON that looks like this and convert it to bibtex, the DOI isn't included:
```
[{"title":"Title","doi":"123456"}]
```
The bibtex is:
```
@misc{,
title = {Title}
}
```
The biblatex is:
```
@misc{,
title = {Title},
doi = {123456}
}
```
I'm using Pandoc 3.9.0.2 at https://pandoc.org/wasm-demo/
Is there a good reason not to include DOIs? I think that [natbib](https://ctan.org/pkg/natbib) knows what to do with them.</div>
1 条评论