| c.BibEntry {RefManageR} | R Documentation |
Combines mutliple BibEntry objects into a single one.
## S3 method for class 'BibEntry' c(..., recursive = FALSE)
... |
- BibEntry objects to be concatenated. |
recursive |
- logical; ignored. |
a single BibEntry object.
c will remove all attributes besides class.
No checking for duplicate entries is performed though keys will be made unique.
Other operators: $.BibEntry,
$<-.BibEntry, +.BibEntry,
[.BibEntry, [<-.BibEntry,
[[.BibEntry, [[<-.BibEntry
bib <- c(BibEntry(bibtype = "article", key = "mclean2014a", title = "My New Article", author = "Mathew W. McLean", journaltitle = "The Journal", date = "2014-01"), BibEntry(bibtype = "article", key = "mclean2014b", title = "My Newer Article", author = "Mathew W. McLean", journaltitle = "The Journal", date = "2014-02"))