Skip to content

Commit 2844c8a

Browse files
authored
Merge pull request #1250 from RcppCore/feature/update_citation
Use new CITATION format preferred by r-devel (Closes #1249)
2 parents 513e14c + d96ae04 commit 2844c8a

File tree

2 files changed

+26
-31
lines changed

2 files changed

+26
-31
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2023-02-06 Dirk Eddelbuettel <[email protected]>
2+
3+
* inst/CITATION: Update to new format preferred by r-devel
4+
15
2023-02-02 Dirk Eddelbuettel <[email protected]>
26

37
* DESCRIPTION (Version, Date): Roll minor version

inst/CITATION

Lines changed: 22 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,41 @@
1-
citHeader("To cite Rcpp in publications use:")
1+
bibentry("Manual",
2+
other = unlist(citation(auto = meta), recursive = FALSE))
23

3-
citEntry(entry = "Article",
4+
bibentry("Article",
45
title = "{Rcpp}: Seamless {R} and {C++} Integration",
5-
author = personList(as.person("Dirk Eddelbuettel"),
6-
as.person("Romain Fran\\c{c}ois")),
6+
author = c(person("Dirk", "Eddelbuettel",
7+
email = "[email protected]",
8+
comment = c(ORCID = "0000-0001-6419-907X")),
9+
person("Romain", "Fran\\c{c}ois")),
710
journal = "Journal of Statistical Software",
811
year = "2011",
912
volume = "40",
1013
number = "8",
1114
pages = "1--18",
12-
doi = "10.18637/jss.v040.i08",
15+
doi = "10.18637/jss.v040.i08")
1316

14-
textVersion = paste("Dirk Eddelbuettel and Romain Francois (2011).",
15-
"Rcpp: Seamless R and C++ Integration.",
16-
"Journal of Statistical Software, 40(8), 1-18, ",
17-
"<doi:10.18637/jss.v040.i08>.")
18-
)
19-
20-
citEntry(entry = "Book",
17+
bibentry("Book",
2118
title = "Seamless {R} and {C++} Integration with {Rcpp}",
22-
author = personList(as.person("Dirk Eddelbuettel")),
19+
author = person("Dirk", "Eddelbuettel",
20+
email = "[email protected]",
21+
comment = c(ORCID = "0000-0001-6419-907X")),
2322
publisher = "Springer",
2423
address = "New York",
2524
year = 2013,
2625
note = "ISBN 978-1-4614-6867-7",
27-
doi = "10.1007/978-1-4614-6868-4",
28-
29-
textVersion = paste("Eddelbuettel, Dirk (2013)",
30-
"Seamless R and C++ Integration with Rcpp,",
31-
"Springer, New York, ISBN 978-1-4614-6867-7,",
32-
"<doi:10.1007/978-1-4614-6868-4>.")
33-
)
26+
doi = "10.1007/978-1-4614-6868-4")
3427

35-
citEntry(entry = "Article",
36-
title = "{Extending \textit{R} with \textit{C++}: A Brief Introduction to \textit{Rcpp}}",
37-
author = personList(as.person("Dirk Eddelbuettel"),
38-
as.person("James Joseph Balamuta")),
28+
bibentry("Article",
29+
title = "{Extending {R} with {C++}: A Brief Introduction to {Rcpp}}",
30+
author = c(person("Dirk", "Eddelbuettel",
31+
email = "[email protected]",
32+
comment = c(ORCID = "0000-0001-6419-907X")),
33+
person("James Joseph", "Balamuta",
34+
email = "[email protected]",
35+
comment = c(ORCID = "0000-0003-2826-8458"))),
3936
journal = "The American Statistician",
4037
year = "2018",
4138
volume = "72",
4239
number = "1",
4340
pages = "28-36",
44-
doi = "10.1080/00031305.2017.1375990",
45-
46-
textVersion = paste("Dirk Eddelbuettel and James Joseph Balamuta (2018).",
47-
"Extending R with C++: A Brief Introduction to Rcpp.",
48-
"The American Statistician. 72(1),",
49-
"<doi:10.1080/00031305.2017.1375990>.")
50-
)
41+
doi = "10.1080/00031305.2017.1375990")

0 commit comments

Comments
 (0)