我正在撰写一篇仅使用R markdown(没有lateX)的学术论文,其中我想引用来源并希望引文的标签是下面列出的引文的超链接。
---
title: 'Term Paper'
author: "Sachin Tendulkar"
output: pdf_document
bibliography: references.bib
bibliostyle: apsr
---
Application written in the R programming language [@RCoreTeam]
# REFERENCES
以下是我的.bib文件的内容:
@Article{RCoreTeam,
Title = {R: A Language and Environment for Statistical Computing},
Author = {{R Core Team}},
Year = {2015},
Type = {Journal Article},
Url = {http://www.R-project.org}
}
我的输出文件生成了一个pdf,但没有给出第一个标记(R Core Team 2015)的超链接,这样我就可以点击它并带我到下面的#references标题。是否有可能在方括号[]中引用此引文?
感谢任何帮助!