I have moved this question over to SO, because it involves Pandoc, citeproc, and CSL, but not biblatex. Please answer there if you can.
I have a biblatex file produced automatically by R that contains citations for R packages. The document will be processed by Pandoc using the --citeproc option; that package uses CSL styles. For example, it contains
@Manual{R-tables,
title = {tables: Formula-Driven Table Generation},
author = {Duncan Murdoch},
note = {R package version 0.9.21},
url = {https://dmurdoch.github.io/tables/},
year = {2023},
}
I would like the reference list using this to include everything, but so far all the CSL styles I've tried skip the note, so I get something like
Murdoch, Duncan. 2023. Tables: Formula-Driven Table Generation. https://dmurdoch.github.io/tables/.
when I would like it to look like
Murdoch, Duncan. 2023. Tables: Formula-Driven Table Generation. R package version 0.9.21. https://dmurdoch.github.io/tables/.
Can anyone suggest how to find CSL styles that display the note like that?
EDITED to add:
I've found a solution that's good enough as a workaround, but I'm still interested in the answer to my question. If I change note to edition the display looks okay to me. But how would I search for styles showing a particular field next time this comes up?
EDITED again:
A comment asked for a self-contained demonstration. I've attached one below. The original was written in R Markdown, but I've simplified it to plain Markdown. Put the text below into test.md and the .bib entry above into packages.bib, then run
pandoc test.md --output test.html --citeproc
and you should get output that looks like this:
---
bibliography: packages.bib
---
The citation
This is a citation of the tables package [@R-tables].
References
I think this probably doesn't actually involve biblatex, but my understanding is that Pandoc is supposed to emulate it. So maybe I'm asking this question in the wrong place, or with the wrong tags. But anyway, any suggestions would be appreciated.


apaandamerican-statistical-associationand a few others. I'm using Pandoc to emulatebiber/biblatex. – user2554330 Jun 13 '23 at 16:54biblatexpackage with the optionstyle=american-statistical-association, I get the following error message:Package biblatex Info: ... file 'american-statistical-association.dbx' not found.. – Mico Jun 13 '23 at 16:57pandocthat then get implemented withbiblatex. They're notbiblatexstyles. – Alan Munn Jun 13 '23 at 16:58