我目前使用的格式和代码如下:
\bibliography{references}
\bibliographystyle{apalike}
参考示例如下:
@article{aiello1995electronic,
title={Electronic performance monitoring and social context: Impact on productivity and stress.},
author={Aiello, John R and Kolb, Kathryn J},
journal={Journal of Applied Psychology},
volume={80},
number={3},
pages={339--353},
year={1995},
publisher={American Psychological Association
\url= \url{https://doi.org/10.1037/0021-9010.80.3.339}}
}
输出结果如下:
但是,我想要的格式是这样的(我想要做的修改以粗体突出显示):
艾洛,JR,&Kolb, KJ (1995).电子绩效监控和社会背景:对生产力和压力的影响。应用心理学杂志,80(3),339-353。https://doi.org/10.1037/0021-9010.80.3.339
那是,
- 将“and”改为“&”;
- 斜体音量也是如此;
- 改成 ”,”;
- 添加一个可点击的超链接,其字体格式与我的内容相同(New Times Roman)。
为了进行上述四次修订,我尝试对参考进行如下编码:
@article{aiello1995electronic,
title={Electronic performance monitoring and social context: Impact on productivity and stress.},
author={Aiello, John R \& Kolb, Kathryn J},
journal={Journal of Applied Psychology},
note={\textit{80}(3), 339--353.
\url{https://doi.org/10.1037/0021-9010.80.3.339}},
year={1995},
publisher={American Psychological Association}
}
输出如下:
但是超链接字体样式不是New Times Roman。
请问有没有什么比较方便的方法可以将现在的APA格式改为我想要的格式呢?
先感谢您。