Skip to content

Commit

Permalink
chore: do not use as.personList/as.person
Browse files Browse the repository at this point in the history
  • Loading branch information
jolars committed Feb 15, 2024
1 parent 28b0eb9 commit 3b2fa28
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions inst/CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ if (length(author)) {
e$role))
}, aar)
}
if (length(author)) {
has_authors_at_R_field <- TRUE
} else {
has_authors_at_R_field <- FALSE
author <- as.personList(meta$Author)
}

author <- format(author, include = c("given", "family"))
if (length(author) > 1L)
Expand All @@ -56,8 +50,7 @@ bibentry(
bibtype = "inproceedings",
title = "A Case Study in Fitting Area-Proportional {{Euler}} Diagrams with Ellipses Using eulerr",
booktitle = "{Proceedings of {{International Workshop}} on {{Set Visualization}} and {{Reasoning}}}",
author = personList(as.person("Johan Larsson"),
as.person("Peter Gustafsson")),
author = c(person("Johan", "Larsson"), person("Peter", "Gustafsson")),
year = 2018,
month = "apr",
volume = 2116,
Expand Down

0 comments on commit 3b2fa28

Please sign in to comment.