我从bibtex文件中生成了带有pandoc的书目。在我的bibtex条目中,我具有pdf的位置(不是URL,只是字段file
中的文件引用)。我想将此参考书目包含在参考书目中,但看不到如何扩展chicago-author-date.csl
-我对CSL完全陌生...
我认为我必须添加
<text macro="file" prefix=". "/>
在布局部分中。但是如何定义宏? bibtex字段和CSL之间的连接如何实现?
在某处有“如何”页面吗? 谢谢您的帮助!
示例bibtex条目是:
author = {Frank, Andrew U.},
title = {Geo-Ontologies Are Scale Dependent (abstract only)},
booktitle = {European Geosciences Union, General Assembly 2009, Session Knowledge and Ontologies},
year = {2009},
editor = {Pulkkinen, Tuija},
url = {http://publik.tuwien.ac.at/files/PubDat-175453.pdf},
file = {docs/docs4/4698_GeoOntologies_abstarct_EUG_09.pdf},
keywords = {Onto},
owner = {frank},
timestamp = {2018.11.29},
}
除了chicago-author-data样式的常规输出外,文件条目还应作为相对Web参考(可单击)插入到输出中。
我在降价文本(从文件中读取)中添加了Nocite列表,并使用API对其进行处理(在Haskell中)
res <- processCites' markdownText
可以,我只想念file
值。