You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was generating a pdf document using Rmarkdown and knitr. I cited knitr. I noticed in my bibliography that in the last of the three knitr citations the title appeared with R downcased. This is using the apa.csl stylesheet.
Xie, Y. (2014). Knitr: A comprehensive tool for reproducible research in R.
In V. Stodden, F. Leisch, & R. D. Peng (Eds.), Implementing reproducible
computational research. Chapman; Hall/CRC.
Xie, Y. (2015). Dynamic documents with R and knitr (2nd ed.).
Chapman; Hall/CRC. https://yihui.org/ knitr/
Xie, Y. (2024). Knitr: A general-purpose package for dynamic report generation in r.
https://yihui.org/kn itr/
Where the last title should end "... for dynamic report generation in R".
I believe I traced the issue down to the last citation not protecting R with {}.
> library(knitr)
> toBibtex(citation("knitr"))
@Manual{,
title = {knitr: A General-Purpose Package for Dynamic Report Generation in R},
author = {Yihui Xie},
year = {2024},
note = {R package version 1.49},
url = {https://yihui.org/knitr/},
}
[...]
I'm a little surprised R with their vast package checking doesn't catch this issue, since I imagine knitr isn't the only package with this issue.
I was generating a pdf document using Rmarkdown and knitr. I cited knitr. I noticed in my bibliography that in the last of the three knitr citations the title appeared with R downcased. This is using the apa.csl stylesheet.
Where the last title should end "... for dynamic report generation in R".
I believe I traced the issue down to the last citation not protecting R with {}.
I'm a little surprised R with their vast package checking doesn't catch this issue, since I imagine knitr isn't the only package with this issue.
Hopefully there is a straightforward fix.
Jen.
The text was updated successfully, but these errors were encountered: