【发布时间】:2017-12-13 15:25:25
【问题描述】:
我使用以下样式将我的参考书目从 markdown 中的 bibtex 文件导入并从那里导入到 html/pdf:
---
bibliography: test.bib
nocite: '@*'
...
# Biliography
之后我运行:
pandoc test.md -o test.html --bibligraphy test.bib --csl=test.csl
但目前围兜条目转换为 html 后的 url 显示为:
<a href="www.test.com/test.pdf">www.test.com/test.pdf</a>
我不知道如何将其更改为:
<a href="www.test.com/test.pdf">test file!</a>
我可以通过触摸 csl 文件来操作 prefix 和 suffic,但无法更改超链接名称。任何帮助表示赞赏。
【问题讨论】:
标签: html pandoc bibtex biblatex csl