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
Articles have the journal (site) title prepended unconditionally in the Citation section, i.e. title = "The R Journal: Some Article" although it should be correctly title= "SomeArticle", e.g.
For attribution, please cite this work as
Zeng & Breheny, "The R Journal: The biglasso Package: A Memory- and Computation-Efficient Solver
for Lasso Model Fitting with Big Data in R", The R Journal, 2021
BibTeX citation
@article{RJ-2021-001,
author = {Zeng, Yaohui and Breheny, Patrick},
title = {The R Journal: The biglasso Package: A Memory- and Computation-Efficient Solver for Lasso Model Fitting with Big Data in R},
journal = {The R Journal}, [...]
I would argue that it is never desirable to have the site title prepended as it is never the title for citation purposes (that's what the journal entry is for) and hence I'd call it a bug, but at the very least there should be a way to disable this behavior. Quick fix is to remove the above, but it is also possible that qualified_title() is used incorrectly in the citation context.
The text was updated successfully, but these errors were encountered:
Articles have the journal (site) title prepended unconditionally in the Citation section, i.e.
title = "The R Journal: Some Article"
although it should be correctlytitle= "SomeArticle"
, e.g.For attribution, please cite this work as
BibTeX citation
This comes from
distill/R/metadata.R
Lines 870 to 876 in d88adca
I would argue that it is never desirable to have the site title prepended as it is never the title for citation purposes (that's what the
journal
entry is for) and hence I'd call it a bug, but at the very least there should be a way to disable this behavior. Quick fix is to remove the above, but it is also possible thatqualified_title()
is used incorrectly in the citation context.The text was updated successfully, but these errors were encountered: