我使用 natbib 和 bibliographystle chicago。我需要添加 doi 链接,并在 .bst 文件中添加以下内容:
FUNCTION {format.vol.num.pages}
{ volume field.or.null
boldface
pages empty$
'skip$
{ duplicate$ empty$
{ pop$ format.pages }
{ ", " * pages first.page.number * }
if$
}
if$
doilink
}
和
FUNCTION {doilink}
{ duplicate$ empty$
{ pop$ "" }
{ doi empty$
{ skip$ }
{ "\href{http://dx.doi.org/" doi * "}{" * swap$ * "}" * }
if$
}
if$
}
和
ENTRY
{ address
author
doi
otherentries
}
(完整文件请见此处:https://ufile.io/f8d46)。
但是,我的代码根本不起作用。我没有得到任何信息...
所以
@article{kahn2000sports,
title={{"The sports business as a labor market laboratory."}},
author={\textbf{Kahn, Lawrence M.}},
journal={The Journal of Economic Perspectives},
volume={14},
number={3},
pages={75--94},
year={2000.},
publisher={JSTOR},
doi= {10.1257/jep.14.3.75}}