I have been looking for a solution to include the full text of a reference item (bibentry
) in the body of the (R)markdown text document, that is, before the reference list. This can be done with LaTeX (https://tex.stackexchange.com/questions/49048/how-to-cite-one-bibentry-in-full-length-in-the-body-text). Can it be done with (R)markdown?
Include the text of a `bibentry` in the (R)markdown text body output
1.6k Views Asked by Samuel-Rosa At
2
There are 2 best solutions below
0

The bibtex
interprets the bibliography file and places it into the bibentry
class, which is part of the utils
package.
Thus, the correct way of showing a citation is to switch away from the accepted answer of:
`r capture.output(biblio["my-bibkey"])`
to
`r format(biblio["my-bibkey"], style = "text")`
Note, we're using the utils:::format.bibentry(entry, style = "text")
to correctly set the output display.
A reasonable solution is to read and parse the bibliography database using, for example, the R-package bibtex and then
capture.output
ofprint
as a character string, which can then be used to include the full text of a reference item (bibentry) in the body of the (R)markdown text document.For example:
Then, in line, use:
which will print the reference text.