我使用Rmarkdown,bookdown和pandoc生成参考部分。我有一个参考部分有6个条目。其中一个条目没有作者列表,而是显示为:
———. 2004. “Multimodel Inference.” Sociological Methods & Research 33 (2). SAGE Publications: 261–304. doi:10.1177/0049124104268644.
这个bibtex条目如下:
@article{burnham2004,
author = {Burnham, Kenneth P. and Anderson, David R.},
day = {01},
doi = {10.1177/0049124104268644},
issn = {0049-1241},
journal = {Sociological Methods \& Research},
keywords = {mdb-article-2017-06},
month = nov,
number = {2},
pages = {261--304},
posted-at = {2017-06-05 22:18:23},
priority = {2},
publisher = {SAGE Publications},
title = {Multimodel Inference},
url = {http://dx.doi.org/10.1177/0049124104268644},
volume = {33},
year = {2004}
}
据我所知,这个bibtex条目是正确的,是什么导致作者列表不显示?
答案 0 :(得分:4)
虚线表示此条目的作者与上一个条目(example)相同,因此省略。当输出格式为HTML时,这是pandoc和pandoc-citeproc的默认行为。如果您不想要此行为,则需要提供自己的引文样式(通过YAML中的csl
或--csl
参数)。有关详细信息,请参阅http://pandoc.org/MANUAL.html#citations。
答案 1 :(得分:2)
Yihui Xie是正确的,这是一个特定于样式的设置。您可以切换到不使用此类作者替换的CSL样式,也可以编辑当前的CSL 1.0.1样式并删除subsequent-author-substitute
和(可选)subsequent-author-substitute-rule
属性来自<bibliography/>
元素。 (另请参阅http://docs.citationstyles.org/en/1.0.1/specification.html#reference-grouping,其中还更详细地解释了此类替换的工作原理)