如何向 bibtex 条目添加许可证(知识共享)?

如何向 bibtex 条目添加许可证(知识共享)?

我正在写一篇论文,其中使用了一些在知识共享许可 (CC-BY) 下可用的数据。我不仅引用了一项发现,还绘制了这些数据,对其进行了分析,从而对其进行了调整和共享。显然,这意味着我必须注明来源,这在学术写作中是标准做法。例如

As shown in Fig. 1, comparing our observations with
daily sunshine duration \citep{meteodata2022}, it is
shown that...

@Misc{meteodata2022,
  author   = {{Meteo Service}},
  title    = {Meteo Data},
  year     = {2022},
  url      = {https://data.meteoservice.tld/records/sun},
} 

然而,知识共享规定我不仅必须注明来源,还必须给出许可。网站甚至说我必须“提供许可证链接”,这就是我纠结的地方。看看第一个官方看似指南我发现在打印时它不一定是超链接,所以它看起来像CC-BY或徽章或符号因为许可证就足够了。

但是我如何将此信息添加到我的 bibtex 条目中以及如何使其显示在我的参考文献中?是否有标准的方法,或者我需要在最后阶段向文字编辑解释这一点?

当然我可以这样做

As shown in Fig. 1, comparing our observations with
daily sunshine duration \citep[data under Creative 
Commons Attribution licence]{meteodata2022}, it is 
shown that...

但这会使文本变得混乱,因此看起来不合适。

答案1

最简单的方法是使用note书目条目字段。它可以保存任意数据,并以标准样式自动打印。

\documentclass{article}

\usepackage{biblatex}

\begin{filecontents}[overwrite]{biblio.bib}
@Misc{meteodata2022,
    author   = {{Meteo Service}},
    title    = {Meteo Data},
    year     = {2022},
    url      = {https://data.meteoservice.tld/records/sun},
    note     = {This work is licensed under the Creative Commons 
                Attribution 4.0 International License. 
                To view a copy of this license, visit
                \url{http://creativecommons.org/licenses/by/4.0/}.}
}   
\end{filecontents}
\addbibresource{biblio.bib}

\begin{document}
\nocite{meteodata2022}
\printbibliography
\end{document}

在此处输入图片描述

如果您想在文档中引用它(例如在脚注中),您可以使用命令\citefield\citefield{meteodata2022}{note})。

请注意,根据您链接的署名指南,“对于离线作品,最好完整说明许可类型和任何 URL。”(第 6 页),因此“类似CC-BY如果您打算打印它,“或徽章或符号”实际上是不够的。

相关内容