我正在完成一篇文章,期刊的编辑人员要求我在参考文献中填写出版年份,不带括号。例如:
阿利吉耶里,D. (1321)喜剧。
-->
阿利吉耶里,D.1321。喜剧。
\bibliography{references}
在文件“.tex”\bibliographystyle{apalike}
中在文件“.sty”中这是我的参考书目条目之一的mwe
@inproceedings{sugimoto:hal-01539048,
TITLE = {{Number game - Experience of a European research
infrastructure (CLARIN) for the analysis of web traffic}},
AUTHOR = {Sugimoto, G.},
URL = {hal.archives-ouvertes.fr/hal-01539048},
BOOKTITLE = {{Proceedings of the CLARIN Annual Conference 2016,
26-28 September 2016, Aix-en-Provence, France}},
YEAR = {2016},
}
我使用这个命令:
\bibliography{references}
你能帮助我吗?
答案1
一个选择是复制apalike.bst放入与您的项目相同的文件夹中。
在文本编辑器中打开它。找到以下部分(大约 120 行):
FUNCTION {output.year.check}
{ year empty$
{ "empty year in " cite$ * warning$ }
{ write$
" (" year * extra.label * ")" *
mid.sentence 'output.state :=
}
if$
}
并将其更改为:
FUNCTION {output.year.check}
{ year empty$
{ "empty year in " cite$ * warning$ }
{ write$
" " year * extra.label * "" *
mid.sentence 'output.state :=
}
if$
}
并保存并重新运行 bibtex。