I am trying to write a syllabus in Rmarkdown. I would like to be able to use my bibtex file and write citations in text and then knit them to html or pdf. So for instance, I would like to be able to write:
For week 1 please read:
+ [@author2005] Chapter 2
And have as output
- Arthur A. Author, Book Title, University Press, 2005, Chapter 2
or something roughly similar that is a long citation appearing in-text.
At the moment, I only find .csl files that either will render this as:
- (Author 2005) Chapter 2
or some other varient of author-year in-text citation, or else .csl files that render it as
- .1
1 Arthur A. Author, Book Title, University Press, 2005, Chapter 2
Is it possible to create a .csl style that produces verbose in text citations? I have been wrestling with the csl visualizer without success. If not, is there another way to tackle citations in markdown/Rmarkdown that allows more control over the formatting of in-text citations?