3

pandocHTMLドキュメントで参考文献と参考文献をレンダリングするために(またはpandoc-citeproc直接)使用することは可能ですか?

最小限の例として、ある種の参考文献があるとします。

@article{SomePerson2014, ...}

そして、Pandoc スタイルの引用を含む HTML ファイル:

...
As mentioned in @SomePerson2014,
...

これを次の HTML コードにレンダリングします。

... As mentioned in <span class="citation">Person (2014)</span>, ...
<div class="references">
<p>Person, Some. 2014. “The Merits of Existence.” <em>The People’s Journal</em>.</p>
</div>
4

1 に答える 1