Search code examples
rbookdowncitations

How can I add a hyperlink to IEEE citations?


In a bookdown book project, I am using the IEEE bibliography and citation style, specified as follows in index.Rmd:

biblio-style: ieeetr
csl: ieee-with-url.csl

The style is applied as I see the familiar "[1]" square brackets. However, at the moment the citations are plain text, which means that the user has to manually click to the References section, and go look up the number manually.

Can I turn the citations themselves into hyperlinks which point to the relevant entry in the References/bibliography?


Solution

  • Adding the following worked:

    link-citations: yes
    

    (Didn't find this in the documentation, but in a github issue)