when using Rmarkdown to build a pdf with citations included, it removes the hyperlinks of the citations by default.
Looking at the latex file produced, I can see \usepackage{hyperref} in the pre-amble, but the citations look as follows:
rmd input: @sharpe
latex output: sharpe (1999)
Thus it produces a non-dynamic citation in pdf.
The latex output that I would expect is: \citet{sharpe}, which produces hyperlinked citation in pdf.
Any ideas why it writes out my bibtex inputs like this and how I can make it hyperlinked?