为什么通过 citation.js 呈现的 bibtex 中缺少年份?
Why is the year missing from bibtex rendered via citation.js?
我正在使用节点 运行 citation.js 将 bibtex 转换为 HTML。不幸的是,渲染的 HTML 中缺少年份,我不明白为什么。
test.js:
var Cite = require("citation-js");
var bibtex =
'@article{id, ' +
' author={Happy Larry},' +
' date={2017-01-01},' +
' title="A Lovely Title"' +
'}';
var opts = {
type: 'html',
style: 'citation-vancouver',
}
var data = new Cite(bibtex, opts);
var g = data.get();
console.log(g);
输出:
$ node ./test.js
<div class="csl-bib-body">
<div data-csl-entry-id="id" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Larry H. A Lovely Title.</div>
</div>
</div>
我希望这一年在某个地方。然而,无论我使用哪种 CSL 风格,它都无法实现。我尝试了几个 bibtex 块,并且从 citationstyles.org 下载了几个 CSL 样式。其他一切都按预期工作 除 年,这总是缺失。
这是 citation.js 中的错误吗?
我注意到 demo page.
的输出中缺少年份
这个post是按照this meta post做的。
因为 Citation.js 中的 @Rintze Zelle also said in , this is (was) indeed a bug in Citation.js. It's fixed in v0.3.0-12
. This more general bug report 有关于该问题的更多信息。
我正在使用节点 运行 citation.js 将 bibtex 转换为 HTML。不幸的是,渲染的 HTML 中缺少年份,我不明白为什么。
test.js:
var Cite = require("citation-js");
var bibtex =
'@article{id, ' +
' author={Happy Larry},' +
' date={2017-01-01},' +
' title="A Lovely Title"' +
'}';
var opts = {
type: 'html',
style: 'citation-vancouver',
}
var data = new Cite(bibtex, opts);
var g = data.get();
console.log(g);
输出:
$ node ./test.js
<div class="csl-bib-body">
<div data-csl-entry-id="id" class="csl-entry">
<div class="csl-left-margin">1. </div><div class="csl-right-inline">Larry H. A Lovely Title.</div>
</div>
</div>
我希望这一年在某个地方。然而,无论我使用哪种 CSL 风格,它都无法实现。我尝试了几个 bibtex 块,并且从 citationstyles.org 下载了几个 CSL 样式。其他一切都按预期工作 除 年,这总是缺失。
这是 citation.js 中的错误吗?
我注意到 demo page.
的输出中缺少年份这个post是按照this meta post做的。
因为 Citation.js 中的 @Rintze Zelle also said in v0.3.0-12
. This more general bug report 有关于该问题的更多信息。