I use bibliography in my .Rmd file:
bibliography: bibliography.bib
My sample .bib entry looks as follows:
@misc{XYZ,
author = "Somebody",
note = "Accessed: 2017-01-10",
title = "{Global database of LaTeX}",
url = "http://writeInLatex.com",
year = "2016"
}
I must display "notes" fields within the bibliography. In case of the example above (web page) - information about access date, in case of the articles - language of the articles.
In case of the example above, I would like to have in the PDF file following entry:
Somebody, 2016. Global database of LaTeX. Accessed: 2017-01-10
How can I do that?
csl: elsevier-harvard-with-titles-with-notes.csl
It works now!